microsoft-sentinel-log-analytics-logstash-output-plugin 2.4.0-java → 2.5.0-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: 52fc2d58edeab5e2a9d529828781d2f958a33c145c46ef05587a65407ea2e551
4
- data.tar.gz: 781cf13f7ac5e4964cd3d628c8261b01034d31d0b8d03100d410f99690788a6d
3
+ metadata.gz: b9de662d1b2a1b355e807bc3eb0ffb51dcf40e62b4e0f2a1c0b36477624a8b73
4
+ data.tar.gz: 3be11c0d54fc160d88ebecf8d9bf0821faf286dbc82af1934149698515699204
5
5
  SHA512:
6
- metadata.gz: 63dba7974498e08c48d04c410c2cafb3f6e37c7e2b7e52a9a43fe88c581a4eb686324e69fcb84cad5e79c4533f85165edd4d142823bc35acd9e76b2ec1d08e56
7
- data.tar.gz: 27288003dce4595b3c81a22a7685d1684d74a91b153dcf46814ef7204a6a94fcc2edc54f9248bd50a96b6434a15416628b8f1590ea30357857605c02b69ec7b1
6
+ metadata.gz: 2a206bc526a9068cfb35872399769e5da7dcd022b151f1459fec2c87db4704c986bfb168be497bf108fe085b296f0df2d44c1fc40fab03b7c7bc8cf075170ab1
7
+ data.tar.gz: c70d3cdf492dff244f511c35b720f96b6b7a1d0ac9c4e3b9bf9356b4c08314961a55fb3a08a4f3ab744f8a50e1d2d403660b0e9817d808788409ed59dfdd3f7f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 2.5.0
2
+ - Added optional per-plugin proxy configuration for authentication and ingestion traffic using `proxy`, `proxy_aad`, and `proxy_endpoint`.
3
+ - Updated Netty handler, HTTP, HTTP/2, and DNS components to 4.1.136.Final.
4
+ - Updated Jackson Databind and Jackson Core to 2.18.8.
5
+
1
6
  ## 2.4.0
2
7
  - Worker threads now run as bounded, executor-scheduled passes: recoverable exceptions are logged and the worker resumes on the next cycle; fatal JVM errors are logged and re-thrown.
3
8
  - Fixed graceful shutdown so in-flight batches are drained (batchers, then unifiers, then senders) before workers stop, bounded by `max_graceful_shutdown_time_seconds`.
@@ -35,4 +40,7 @@
35
40
 
36
41
  ## 2.0.0
37
42
  - Refactored the plugin from Ruby to Java.
38
- - Added ManagedIdentity authentication.
43
+ - Added ManagedIdentity authentication.
44
+
45
+ ## 1.x.x (Ruby - deprecated)
46
+ The 1.x.x releases are the deprecated Ruby version of this plugin. For the 1.x.x changelog and documentation, see [microsoft-sentinel-log-analytics-logstash-output-plugin](../microsoft-sentinel-log-analytics-logstash-output-plugin/CHANGELOG.md).
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.3.3
7
- Released on: 2026-07-02
6
+ Plugin version: v2.5.0
7
+ Released on: 2026-08-04
8
8
 
9
9
  This plugin is currently in development and is free to use. We request and appreciate feedback from users.
10
10
 
@@ -19,7 +19,7 @@ This plugin is currently in development and is free to use. We request and appre
19
19
 
20
20
  Microsoft Sentinel provides Logstash output plugin to Log analytics workspace using DCR based logs API.
21
21
 
22
- The plugin is published on [RubyGems](https://rubygems.org/gems/microsoft-sentinel-log-analytics-logstash-output-plugin/versions/2.2.2-java). To install to an existing logstash installation, run `logstash-plugin install microsoft-sentinel-log-analytics-logstash-output-plugin`.
22
+ The plugin is published on [RubyGems](https://rubygems.org/gems/microsoft-sentinel-log-analytics-logstash-output-plugin/versions/2.5.0-java). To install to an existing logstash installation, run `logstash-plugin install microsoft-sentinel-log-analytics-logstash-output-plugin`.
23
23
 
24
24
  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
25
 
@@ -55,7 +55,7 @@ Note: make sure that the path exists before creating the sample file.
55
55
  ### Configurations:
56
56
  The following parameters are optional and should be used to create a sample file.
57
57
  - **create_sample_file** - Boolean, False by default. When enabled, up to 10 events will be written to a sample json file.
58
- - **sample_file_path** - Number, Empty by default. Required when create_sample_file is enabled. Should include a valid path in which to place the sample file generated.
58
+ - **sample_file_path** - String, Empty by default. Required when create_sample_file is enabled. Should include a valid path in which to place the sample file generated.
59
59
 
60
60
  ### Complete example
61
61
  1. set the pipeline.conf with the following configuration:
@@ -210,6 +210,9 @@ A complete `logstash.conf` using client secret auth with a Beats input:
210
210
  | Key | Default | Description |
211
211
  |---|---|---|
212
212
  | `azure_cloud` | `AzurePublicCloud` | Azure cloud environment |
213
+ | `proxy` | *(none)* | Optional. Base HTTP proxy URL applied to all plugin traffic. Format: `[http://][user:password@]host:port`. When unset, no proxy is used and behavior is unchanged |
214
+ | `proxy_aad` | *(value of `proxy`)* | Optional. HTTP proxy URL used only for Microsoft Entra ID (AAD) authentication/token traffic. Falls back to `proxy` when unset |
215
+ | `proxy_endpoint` | *(value of `proxy`)* | Optional. HTTP proxy URL used only for traffic to the Data Collection Endpoint. Falls back to `proxy` when unset |
213
216
  | `keys_to_keep` | *(all)* | Array of field names to send (subset filtering) |
214
217
  | `max_retries_num` | `3` | Max retry attempts for failed sends |
215
218
  | `initial_wait_time_seconds` | `1` | Initial backoff between retries |
@@ -227,6 +230,30 @@ A complete `logstash.conf` using client secret auth with a Beats input:
227
230
  | `unifier_workers_count` | *(auto)* | Number of unifier threads |
228
231
  | `id` | `None` | A custom identification tag to be added to sent-batches logs |
229
232
 
233
+ ### Proxy configuration
234
+
235
+ The proxy settings are **optional** and scoped to this plugin only. If you do not set any of them, the plugin behaves exactly as before and sends traffic directly (no proxy). This is useful when a single Logstash instance has multiple outputs and only the Microsoft Sentinel output needs to traverse a corporate proxy.
236
+
237
+ - `proxy` — base proxy applied to both authentication and ingestion traffic.
238
+ - `proxy_aad` — overrides the proxy used for Microsoft Entra ID (AAD) token requests; falls back to `proxy`.
239
+ - `proxy_endpoint` — overrides the proxy used for Data Collection Endpoint traffic; falls back to `proxy`.
240
+
241
+ Proxy URLs use the format `[http://][user:password@]host:port`. The scheme is optional and defaults to `http`; both host and port are required. Example:
242
+
243
+ output {
244
+ microsoft-sentinel-log-analytics-logstash-output-plugin {
245
+ data_collection_endpoint => "https://my-dce.eastus2-1.ingest.monitor.azure.com"
246
+ dcr_id => "dcr-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
247
+ stream_name => "Custom-MyTableRawData_CL"
248
+ client_id => "<your-app-client-id>"
249
+ client_secret => "<your-app-client-secret>"
250
+ tenant_id => "<your-azure-tenant-id>"
251
+ proxy => "http://proxyhost:8080"
252
+ }
253
+ }
254
+
255
+ Security note: if your proxy requires credentials, store them in the Logstash KeyStore rather than placing them in plaintext in the configuration file.
256
+
230
257
  ## Known issues
231
258
 
232
259
  When using Logstash installed on a Docker image of Lite Ubuntu, the following warning may appear:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.4.0
1
+ 2.5.0
@@ -2,4 +2,4 @@
2
2
  # encoding: utf-8
3
3
 
4
4
  require 'jar_dependencies'
5
- require_jar('org.logstashplugins', 'microsoft-sentinel-log-analytics-logstash-output-plugin', '2.4.0')
5
+ require_jar('org.logstashplugins', 'microsoft-sentinel-log-analytics-logstash-output-plugin', '2.5.0')
@@ -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.4.0'
4
+ s.version = '2.5.0'
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.4.0
4
+ version: 2.5.0
5
5
  platform: java
6
6
  authors:
7
7
  - Microsoft
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-10 00:00:00.000000000 Z
11
+ date: 2026-08-04 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.4.0/microsoft-sentinel-log-analytics-logstash-output-plugin-2.4.0.jar
78
+ - 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
79
79
  homepage:
80
80
  licenses:
81
81
  - Apache-2.0