microsoft-sentinel-logstash-output 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ac705f936fb73ea295c27fec409200028e41a9696981d55649af26f0f7193125
4
- data.tar.gz: c9dae4e13cfcb6e976c0beeba976fb2c3fbb732b70f2e7237cb7b8d4fdea4169
3
+ metadata.gz: cad996478d4637e6932cebb26d5eb53f856b86f1f28af2c6cd1d220268761874
4
+ data.tar.gz: 0d409801000d3cf5d7e26f52b0e33c482634d153d830317c24709686c7851697
5
5
  SHA512:
6
- metadata.gz: aa7ba8571ed03795e83a37f8fc4b2f7ecb4176dcaf9f4ea0fd4a1c9c15876c1a6c118cca82f1abe2d26504a66a6388be6af91e7f163adf15ab8621423c5cf966
7
- data.tar.gz: 6fd78bdec65594be688813a11870a00412bcfc0d9cab9bb92dade9d318b639cdb1b5c646c9cb8fb60c61235eae6060849efc6cc90453d1d537c95e90833a676d
6
+ metadata.gz: 3296be47a7a4984e242a4e32d5d78e93d43566aea43d46d5377d28c3b3cfaa4f786d44f22ad5e3b7f3294134b9de0b5dc480f35b636e04318b2e3b33fb9974fe
7
+ data.tar.gz: 8ab1dbdc506a498c877176eb88202b523dbf1ffeaacdc0d1ed5a59163a074db2a2202929d07b3c181a1381f541b6ca5900bc2ee6bd74e58d8081c483daf85c56
data/CHANGELOG.md CHANGED
@@ -7,7 +7,7 @@
7
7
  * Upgrade the rest-client dependency minimum version to 2.1.0.
8
8
  * Allow setting different proxy values for api connections.
9
9
  * Upgrade version for ingestion api to 2023-01-01.
10
- * Rename the plugin to microsoft-sentinel-log-analytics-logstash-output-plugin.
10
+ * Rename the plugin to microsoft-sentinel-logstash-output-plugin.
11
11
 
12
12
  ## 1.1.1
13
13
  * Support China and US Government Azure sovereign clouds.
@@ -15,4 +15,4 @@
15
15
 
16
16
  ## 1.2.0
17
17
  * Added support for Managed Identity authentication on both Azure VMs and Azure Arc connected machines.
18
- * * Rename the plugin to microsoft-sentinel-log-analytics-logstash-output
18
+ * * Rename the plugin to microsoft-sentinel-logstash-output
data/README.md CHANGED
@@ -38,10 +38,10 @@ sudo apt-mark hold logstash
38
38
 
39
39
  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>)
40
40
 
41
- To install the microsoft-sentinel-log-analytics-logstash-output, you can make use of the published gem at rubygems.com:
41
+ To install the microsoft-sentinel-logstash-output, you can make use of the published gem at rubygems.com:
42
42
 
43
43
  ```
44
- sudo /usr/share/logstash/bin/logstash-plugin install microsoft-sentinel-log-analytics-logstash-output
44
+ sudo /usr/share/logstash/bin/logstash-plugin install microsoft-sentinel-logstash-output
45
45
  ```
46
46
 
47
47
  If your machine doesn't has an active Internet connection, or you want to install the plugin manually, you can download the plugin files and perform an 'offline' installation. [Logstash Offline Plugin Management instruction](<https://www.elastic.co/guide/en/logstash/current/offline-plugins.html>).
@@ -49,7 +49,7 @@ If your machine doesn't has an active Internet connection, or you want to instal
49
49
  If you already have the plugin installed, you can check which version you have by running:
50
50
 
51
51
  ```
52
- sudo /usr/share/logstash/bin/logstash-plugin list --verbose microsoft-sentinel-log-analytics-logstash-output
52
+ sudo /usr/share/logstash/bin/logstash-plugin list --verbose microsoft-sentinel-logstash-output
53
53
  ```
54
54
 
55
55
  ## 2. Create a sample file
@@ -57,7 +57,7 @@ To create a sample file, follow the following steps:
57
57
  1) Copy the output plugin configuration below to your Logstash configuration file:
58
58
  ```
59
59
  output {
60
- microsoft-sentinel-log-analytics-logstash-output {
60
+ microsoft-sentinel-logstash-output {
61
61
  create_sample_file => true
62
62
  sample_file_path => "<enter the path to the file in which the sample data will be written>" #for example: "c:\\temp" (for windows) or "/var/log" for Linux.
63
63
  }
@@ -84,7 +84,7 @@ input {
84
84
  }
85
85
 
86
86
  output {
87
- microsoft-sentinel-log-analytics-logstash-output {
87
+ microsoft-sentinel-logstash-output {
88
88
  create_sample_file => true
89
89
  sample_file_path => "<enter the path to the file in which the sample data will be written>" #for example: "c:\\temp" (for windows) or "/var/log" for Linux.
90
90
  }
@@ -127,7 +127,7 @@ Here is an example for the output plugin configuration section:
127
127
 
128
128
  ```
129
129
  output {
130
- microsoft-sentinel-log-analytics-logstash-output {
130
+ microsoft-sentinel-logstash-output {
131
131
  client_app_Id => "<enter your client_app_id value here>"
132
132
  client_app_secret => "<enter your client_app_secret value here>"
133
133
  tenant_id => "<enter your tenant id here>"
@@ -160,7 +160,7 @@ Here is an example for the output plugin configuration section using a Managed I
160
160
 
161
161
  ```
162
162
  output {
163
- microsoft-sentinel-log-analytics-logstash-output {
163
+ microsoft-sentinel-logstash-output {
164
164
  managed_identity => true
165
165
  data_collection_endpoint => "<enter your DCE logsIngestion URI here>"
166
166
  dcr_immutable_id => "<enter your DCR immutableId here>"
@@ -192,7 +192,7 @@ input {
192
192
  filter {
193
193
  }
194
194
  output {
195
- microsoft-sentinel-log-analytics-logstash-output {
195
+ microsoft-sentinel-logstash-output {
196
196
  client_app_Id => "619c1731-15ca-4403-9c61-xxxxxxxxxxxx"
197
197
  client_app_secret => "xxxxxxxxxxxxxxxx"
198
198
  tenant_id => "72f988bf-86f1-41af-91ab-xxxxxxxxxxxx"
@@ -216,7 +216,7 @@ input {
216
216
  filter {
217
217
  }
218
218
  output {
219
- microsoft-sentinel-log-analytics-logstash-output {
219
+ microsoft-sentinel-logstash-output {
220
220
  client_app_Id => "619c1731-15ca-4403-9c61-xxxxxxxxxxxx"
221
221
  client_app_secret => "xxxxxxxxxxxxxxxx"
222
222
  tenant_id => "72f988bf-86f1-41af-91ab-xxxxxxxxxxxx"
@@ -236,7 +236,7 @@ input {
236
236
  }
237
237
 
238
238
  output {
239
- microsoft-sentinel-log-analytics-logstash-output {
239
+ microsoft-sentinel-logstash-output {
240
240
  client_app_Id => "${CLIENT_APP_ID}"
241
241
  client_app_secret => "${CLIENT_APP_SECRET}"
242
242
  tenant_id => "${TENANT_ID}"
@@ -8,7 +8,7 @@ require "logstash/sentinel_la/logsSender"
8
8
 
9
9
  class LogStash::Outputs::MicrosoftSentinelOutput < LogStash::Outputs::Base
10
10
 
11
- config_name "microsoft-sentinel-log-analytics-logstash-output"
11
+ config_name "microsoft-sentinel-logstash-output"
12
12
 
13
13
  # Stating that the output plugin will run in concurrent mode
14
14
  concurrency :shared
@@ -92,9 +92,9 @@ class LogstashLoganalyticsOutputConfiguration
92
92
 
93
93
 
94
94
  def print_missing_parameter_message_and_raise(param_name)
95
- @logger.error("Missing a required setting for the microsoft-sentinel-log-analytics-logstash-output output plugin:
95
+ @logger.error("Missing a required setting for the microsoft-sentinel-logstash-output output plugin:
96
96
  output {
97
- microsoft-sentinel-log-analytics-logstash-output {
97
+ microsoft-sentinel-logstash-output {
98
98
  #{param_name} => # SETTING MISSING
99
99
  ...
100
100
  }
@@ -1,6 +1,6 @@
1
1
  module LogStash; module Outputs;
2
2
  class MicrosoftSentinelOutputInternal
3
- VERSION_INFO = [1, 2, 1].freeze
3
+ VERSION_INFO = [1, 2, 2].freeze
4
4
  VERSION = VERSION_INFO.map(&:to_s).join('.').freeze
5
5
 
6
6
  def self.version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: microsoft-sentinel-logstash-output
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pouyan & Koos
@@ -100,7 +100,7 @@ files:
100
100
  - lib/logstash/sentinel_la/logstashLoganalyticsConfiguration.rb
101
101
  - lib/logstash/sentinel_la/sampleFileCreator.rb
102
102
  - lib/logstash/sentinel_la/version.rb
103
- - microsoft-sentinel-log-analytics-logstash-output.gemspec
103
+ - microsoft-sentinel-logstash-output.gemspec
104
104
  homepage: https://github.com/pkhabazi/microsoft-sentinel-logstash-output
105
105
  licenses:
106
106
  - MIT