microsoft-sentinel-log-analytics-logstash-output-plugin 2.2.0-java → 2.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f77b193c8121a3b1e99f505cbf101c5f882f8bc307c7e44d5d23c26775230a3
4
- data.tar.gz: d4ad2452b52b6c7e17e7ee60264eece406f38a45f0be65c84fea33e770134d6c
3
+ metadata.gz: ea487790648bd37da80785720d41eba04d6e25d26b51acd4dedaae12d4df788e
4
+ data.tar.gz: 2c5e07886e64407c588ebae4d080796ae83e4a5c24a6dd287cc91a8858e1bea4
5
5
  SHA512:
6
- metadata.gz: 1994c3752c45290802f5979b00ca25ac27e3bf3d5dd6237741ff29332077b255f433857ab3485c57cccdf2f402a2d7efd25b357b61ead3eb3dcb26515e4a9a22
7
- data.tar.gz: cd681f40f8fa06b4eda60015052cd247904acdaefea5dc9294cdb017b64ffa30b10f15d47dfab9b539714cfd7f14d7fa4dd6c39893c12e56bb8bd750678c83d2
6
+ metadata.gz: 0a76b54722684ef96a897363bfe0b2104dc14c99ef7e196585a8e6ae2e03606e330c16ece586a262148a41cfee41797304ec8ecde13cdc3839005645b808d79c
7
+ data.tar.gz: d18a87da9ac8d7b5f19c3be49744d0ed7051b343fda7a8dc9dbb52c4f88c3c83dcb81310cbae590c910f0a2adb539c5dfe8ed4118303f4f24eb5969c7fe248a2
data/CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
1
+ ## 2.2.1
2
+ - Adds info-level logging line when batches are successfully sent.
3
+
4
+ ## 2.2.0
5
+ - Adds ability to use either new or old configuration values.
6
+
7
+ ## 2.1.2
8
+ - Documentation updates
9
+
10
+ ## 2.1.1
11
+ - Improved efficiency.
12
+
13
+ ## 2.1.0
14
+ - Fixed event normalization.
15
+
16
+ ## 2.0.0
17
+ - Refactored the plugin from Ruby to Java.
18
+ - Added ManagedIdentity authentication.
data/README.md CHANGED
@@ -3,8 +3,8 @@
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.2.0
7
- Released on: 2026-05-04
6
+ Plugin version: v2.2.1
7
+ Released on: 2026-05-27
8
8
 
9
9
  This plugin is currently in development and is free to use. We request and appreciate feedback from users.
10
10
 
@@ -25,12 +25,13 @@ If you do not have a direct internet connection, you can install the plugin to a
25
25
 
26
26
  Microsoft Sentinel's Logstash output plugin supports the following versions
27
27
  - 7.0 - 7.17.13
28
- - 8.0 - 8.9
29
- - 8.11 - 8.15
30
- - 8.19.2
31
- - 9.0.8
32
- - 9.1.10
33
- - 9.2.4 - 9.2.5
28
+ - 8.0 - 8.9 (NOTE: these versions require a security update, according to Logstash!)
29
+ - 8.11 - 8.15 (NOTE: these versions require a security update, according to Logstash!)
30
+ - 8.19.2 (NOTE: this version requires a security update, according to Logstash!)
31
+ - 9.0.8 (NOTE: this version requires a security update, according to Logstash!)
32
+ - 9.1.10 (NOTE: this version requires a security update, according to Logstash!)
33
+ - 9.2.4 - 9.2.5 (NOTE: these versions require a security update, according to Logstash! [Security Update](https://discuss.elastic.co/t/logstash-8-19-14-9-2-8-9-3-3-security-update-esa-2026-29/385816))
34
+ - 9.3.3
34
35
 
35
36
  Please note that when using Logstash 8, it is recommended to disable ECS in the pipeline. For more information refer to [Logstash documentation.](<https://www.elastic.co/guide/en/logstash/8.4/ecs-ls.html>)
36
37
 
@@ -94,7 +95,7 @@ To configure Microsoft Sentinel Logstash plugin you first need to create the DCR
94
95
 
95
96
  *Note:* The identity (service principal or managed identity) must have the **Monitoring Metrics Publisher** role on the target DCR:
96
97
 
97
- ```bash
98
+ ```
98
99
  az role assignment create \
99
100
  --assignee <object-id-of-identity> \
100
101
  --role "Monitoring Metrics Publisher" \
@@ -124,7 +125,7 @@ The plugin auto-detects the auth method based on which config values are present
124
125
 
125
126
  Provide `client_id`, `client_secret`, and `tenant_id` for your Azure App Registration / service principal.
126
127
 
127
- ```logstash
128
+ ```
128
129
  output {
129
130
  microsoft-sentinel-log-analytics-logstash-output-plugin {
130
131
  data_collection_endpoint => "https://<your-dce-name>.<region>.ingest.monitor.azure.com"
@@ -142,7 +143,7 @@ Provide `client_id`, `client_secret`, and `tenant_id` for your Azure App Registr
142
143
 
143
144
  When running on an Azure VM with a system-assigned managed identity, omit `client_id`, `client_secret`, and `tenant_id`. The plugin will automatically use the VM's managed identity.
144
145
 
145
- ```logstash
146
+ ```
146
147
  output {
147
148
  microsoft-sentinel-log-analytics-logstash-output-plugin {
148
149
  data_collection_endpoint => "https://<your-dce-name>.<region>.ingest.monitor.azure.com"
@@ -156,7 +157,7 @@ When running on an Azure VM with a system-assigned managed identity, omit `clien
156
157
 
157
158
  To authenticate against a sovereign cloud, add `azure_cloud`. Supported values: `AzurePublicCloud` (default), `AzureUSGovernment`, `AzureChinaCloud`, `AzureGermanyCloud`.
158
159
 
159
- ```logstash
160
+ ```
160
161
  output {
161
162
  microsoft-sentinel-log-analytics-logstash-output-plugin {
162
163
  data_collection_endpoint => "https://<your-dce-ingestion-endpoint>"
@@ -172,7 +173,7 @@ To authenticate against a sovereign cloud, add `azure_cloud`. Supported values:
172
173
 
173
174
  #### Option 4: Managed Identity + Sovereign Cloud
174
175
 
175
- ```logstash
176
+ ```
176
177
  output {
177
178
  microsoft-sentinel-log-analytics-logstash-output-plugin {
178
179
  data_collection_endpoint => "https://<your-dce-ingestion-endpoint>"
@@ -192,7 +193,7 @@ Security notice: We recommend not to implicitly state client_id, client_secret,
192
193
 
193
194
  A complete `logstash.conf` using client secret auth with a Beats input:
194
195
 
195
- ```logstash
196
+ ```
196
197
  input {
197
198
  beats {
198
199
  port => 5044
@@ -243,7 +244,7 @@ When using Logstash installed on a Docker image of Lite Ubuntu, the following wa
243
244
  ```
244
245
 
245
246
  To resolve it, use the following commands to install the *netbase* package within your Dockerfile:
246
- ```bash
247
+ ```
247
248
  USER root
248
249
  RUN apt install netbase -y
249
250
  ```
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.2.0
1
+ 2.2.1
@@ -2,4 +2,4 @@
2
2
  # encoding: utf-8
3
3
 
4
4
  require 'jar_dependencies'
5
- require_jar('org.logstashplugins', 'logstash-output-microsoft-sentinel-log-analytics-logstash-output-plugin', '2.2.0')
5
+ require_jar('org.logstashplugins', 'logstash-output-microsoft-sentinel-log-analytics-logstash-output-plugin', '2.2.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.2.0'
4
+ s.version = '2.2.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.2.0
4
+ version: 2.2.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-05-04 00:00:00.000000000 Z
11
+ date: 2026-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ executables: []
67
67
  extensions: []
68
68
  extra_rdoc_files: []
69
69
  files:
70
+ - CHANGELOG.md
70
71
  - Gemfile
71
72
  - README.md
72
73
  - VERSION
@@ -74,7 +75,7 @@ files:
74
75
  - lib/logstash/outputs/microsoft-sentinel-log-analytics-logstash-output-plugin.rb
75
76
  - lib/logstash_registry.rb
76
77
  - logstash-output-microsoft-sentinel-log-analytics-logstash-output-plugin.gemspec
77
- - vendor/jar-dependencies/org/logstashplugins/logstash-output-microsoft-sentinel-log-analytics-logstash-output-plugin/2.2.0/logstash-output-microsoft-sentinel-log-analytics-logstash-output-plugin-2.2.0.jar
78
+ - vendor/jar-dependencies/org/logstashplugins/logstash-output-microsoft-sentinel-log-analytics-logstash-output-plugin/2.2.1/logstash-output-microsoft-sentinel-log-analytics-logstash-output-plugin-2.2.1.jar
78
79
  homepage:
79
80
  licenses:
80
81
  - Apache-2.0