microsoft-sentinel-log-analytics-logstash-output-plugin 2.5.0-java → 2.5.1-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +22 -4
- data/VERSION +1 -1
- data/lib/microsoft-sentinel-log-analytics-logstash-output-plugin_jars.rb +1 -1
- data/logstash-output-microsoft-sentinel-log-analytics-logstash-output-plugin.gemspec +1 -1
- data/vendor/jar-dependencies/org/logstashplugins/microsoft-sentinel-log-analytics-logstash-output-plugin/{2.5.0/microsoft-sentinel-log-analytics-logstash-output-plugin-2.5.0.jar → 2.5.1/microsoft-sentinel-log-analytics-logstash-output-plugin-2.5.1.jar} +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4702fd72d471cd82239eeaa30f8c379a1ad7830c77321a388a60c98eddd25f58
|
|
4
|
+
data.tar.gz: 8eb5c632bd0875e3c305ff9879b87c29e798b720988c836efb2b4c1a9bb46d2a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91c4e36abe689d0ce4498089a3678ac890c5c8cc9426ee6d2e96f14755df9926f2fa24e725bdf6642e7b06dff7debcc7bd4ca27323b24644f530e78bb349c44f
|
|
7
|
+
data.tar.gz: d47ee51b3c8b7013b2bbc63866cf525bda38a4de0f12ce7fc834fd5612a8852bdc64def2e3cd0ecd87d2a941acc25481ea4923b880289253d42cc8508a9343cb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## 2.5.1
|
|
2
|
+
- Restricted `data_collection_endpoint` to HTTPS Azure Monitor ingestion hosts for the configured Azure cloud.
|
|
3
|
+
- Fixed sovereign-cloud ingestion authentication by selecting the Azure Monitor token audience that matches `azure_cloud`.
|
|
4
|
+
- Added detailed Azure Monitor upload failure telemetry, including inner HTTP status codes, service error details, request IDs, and the SDK-reported failed-log count.
|
|
5
|
+
|
|
1
6
|
## 2.5.0
|
|
2
7
|
- Added optional per-plugin proxy configuration for authentication and ingestion traffic using `proxy`, `proxy_aad`, and `proxy_endpoint`.
|
|
3
8
|
- Updated Netty handler, HTTP, HTTP/2, and DNS components to 4.1.136.Final.
|
data/README.md
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
Microsoft Sentinel provides a new output plugin for Logstash. Use this output plugin to send any log via Logstash to the Microsoft Sentinel/Log Analytics workspace. This is done with the Log Analytics DCR-based API.
|
|
4
4
|
You may send logs to custom or standard tables.
|
|
5
5
|
|
|
6
|
-
Plugin version: v2.5.
|
|
7
|
-
|
|
6
|
+
Plugin version: v2.5.1
|
|
7
|
+
|
|
8
|
+
Released on: 2026-09-10
|
|
8
9
|
|
|
9
10
|
This plugin is currently in development and is free to use. We request and appreciate feedback from users.
|
|
10
11
|
|
|
@@ -19,7 +20,7 @@ This plugin is currently in development and is free to use. We request and appre
|
|
|
19
20
|
|
|
20
21
|
Microsoft Sentinel provides Logstash output plugin to Log analytics workspace using DCR based logs API.
|
|
21
22
|
|
|
22
|
-
The plugin is published on [RubyGems](https://rubygems.org/gems/microsoft-sentinel-log-analytics-logstash-output-plugin/versions/2.5.
|
|
23
|
+
The plugin is published on [RubyGems](https://rubygems.org/gems/microsoft-sentinel-log-analytics-logstash-output-plugin/versions/2.5.1-java). To install to an existing logstash installation, run `logstash-plugin install microsoft-sentinel-log-analytics-logstash-output-plugin`.
|
|
23
24
|
|
|
24
25
|
If you do not have a direct internet connection, you can install the plugin to another logstash installation, and then export and import a plugin bundle to the offline host. For more information, see [Logstash Offline Plugin Management instruction](<https://www.elastic.co/guide/en/logstash/current/offline-plugins.html>).
|
|
25
26
|
|
|
@@ -114,6 +115,19 @@ Add the `microsoft-sentinel-log-analytics-logstash-output-plugin` block to the `
|
|
|
114
115
|
| `dcr_id` | The immutable ID of your Data Collection Rule |
|
|
115
116
|
| `stream_name` | The stream name from your DCR (e.g., `Custom-MyTableRawData_CL`) |
|
|
116
117
|
|
|
118
|
+
`data_collection_endpoint` must use HTTPS and must match the selected
|
|
119
|
+
`azure_cloud`:
|
|
120
|
+
|
|
121
|
+
| Azure cloud | Required endpoint host suffix |
|
|
122
|
+
|---|---|
|
|
123
|
+
| `AzurePublicCloud` | `.ingest.monitor.azure.com` |
|
|
124
|
+
| `AzureUSGovernment` | `.ingest.monitor.azure.us` |
|
|
125
|
+
| `AzureChinaCloud` | `.ingest.monitor.azure.cn` |
|
|
126
|
+
| `AzureGermanyCloud` | `.ingest.monitor.azure.de` |
|
|
127
|
+
|
|
128
|
+
User information, ports other than 443, non-root paths, query strings, and fragments
|
|
129
|
+
are not accepted in the endpoint URL.
|
|
130
|
+
|
|
117
131
|
---
|
|
118
132
|
|
|
119
133
|
### Authentication Examples
|
|
@@ -150,7 +164,7 @@ When running on an Azure VM with a system-assigned managed identity, omit `clien
|
|
|
150
164
|
|
|
151
165
|
#### Option 3: Client Secret + Sovereign Cloud
|
|
152
166
|
|
|
153
|
-
To authenticate against a sovereign cloud, add `azure_cloud`. Supported values: `AzurePublicCloud` (default), `AzureUSGovernment`, `AzureChinaCloud`, `AzureGermanyCloud`.
|
|
167
|
+
To authenticate against a sovereign cloud, add `azure_cloud`. Supported values: `AzurePublicCloud` (default), `AzureUSGovernment`, `AzureChinaCloud`, `AzureGermanyCloud`. The plugin uses this value for both the Microsoft Entra authority and the Azure Monitor Logs Ingestion token audience.
|
|
154
168
|
|
|
155
169
|
output {
|
|
156
170
|
microsoft-sentinel-log-analytics-logstash-output-plugin {
|
|
@@ -254,6 +268,10 @@ Proxy URLs use the format `[http://][user:password@]host:port`. The scheme is op
|
|
|
254
268
|
|
|
255
269
|
Security note: if your proxy requires credentials, store them in the Logstash KeyStore rather than placing them in plaintext in the configuration file.
|
|
256
270
|
|
|
271
|
+
## Troubleshooting upload failures
|
|
272
|
+
|
|
273
|
+
Starting with version 2.5.1, Azure Monitor upload failure logs include the inner HTTP status, Azure service error code and message, `x-ms-request-id`, `x-ms-client-request-id`, and the SDK-reported failed-log count. Event payloads and failed event contents are not written to the logs.
|
|
274
|
+
|
|
257
275
|
## Known issues
|
|
258
276
|
|
|
259
277
|
When using Logstash installed on a Docker image of Lite Ubuntu, the following warning may appear:
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.5.
|
|
1
|
+
2.5.1
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# AUTOGENERATED BY THE GRADLE SCRIPT. EDITS WILL BE OVERWRITTEN.
|
|
2
2
|
Gem::Specification.new do |s|
|
|
3
3
|
s.name = 'microsoft-sentinel-log-analytics-logstash-output-plugin'
|
|
4
|
-
s.version = '2.5.
|
|
4
|
+
s.version = '2.5.1'
|
|
5
5
|
s.licenses = ['Apache-2.0']
|
|
6
6
|
s.summary = 'Microsoft Sentinel Log Analytics output plugin'
|
|
7
7
|
s.description = 'Microsoft Sentinel provides a new output plugin for Logstash. Use this output plugin to send any log via Logstash to the Microsoft Sentinel/Log Analytics workspace. This is done with the Log Analytics DCR-based API.'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: microsoft-sentinel-log-analytics-logstash-output-plugin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.5.
|
|
4
|
+
version: 2.5.1
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Microsoft
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -75,7 +75,7 @@ files:
|
|
|
75
75
|
- lib/logstash_registry.rb
|
|
76
76
|
- lib/microsoft-sentinel-log-analytics-logstash-output-plugin_jars.rb
|
|
77
77
|
- logstash-output-microsoft-sentinel-log-analytics-logstash-output-plugin.gemspec
|
|
78
|
-
- vendor/jar-dependencies/org/logstashplugins/microsoft-sentinel-log-analytics-logstash-output-plugin/2.5.
|
|
78
|
+
- vendor/jar-dependencies/org/logstashplugins/microsoft-sentinel-log-analytics-logstash-output-plugin/2.5.1/microsoft-sentinel-log-analytics-logstash-output-plugin-2.5.1.jar
|
|
79
79
|
homepage:
|
|
80
80
|
licenses:
|
|
81
81
|
- Apache-2.0
|