зеркало из
1
0
Форкнуть 0
Logstash output for Kusto
Перейти к файлу
Yochai Gilad 7c8cefd205
Reduce permissions needed to run e2es (#43)
* Reduce permissions needed to run e2es

* Update build.yml

* Update build.yml

* Removed comment from dependency

Co-authored-by: AsafMah <asafmahlev@microsoft.com>
2022-08-15 09:36:00 +03:00
.github/workflows Reduce permissions needed to run e2es (#43) 2022-08-15 09:36:00 +03:00
.vscode Version 0.4.0 (#26) 2019-05-26 16:20:46 +03:00
e2e Update to the latest kusto java version, to receive the latest features and fixes (#35) 2021-07-05 14:29:09 +03:00
lib/logstash/outputs *Add support for proxies *Filter 0 byte files (#42) 2022-08-04 10:43:46 +05:30
spec *Add support for proxies *Filter 0 byte files (#42) 2022-08-04 10:43:46 +05:30
.gitignore *Add support for proxies *Filter 0 byte files (#42) 2022-08-04 10:43:46 +05:30
.rubocop.yml publish version 0.1.6 (#1) 2018-09-20 16:09:28 +03:00
CHANGELOG.md *Add support for proxies *Filter 0 byte files (#42) 2022-08-04 10:43:46 +05:30
CONTRIBUTORS publish version 0.1.6 (#1) 2018-09-20 16:09:28 +03:00
Gemfile Upgrade java version to 3.1.1 (#39) 2022-06-01 18:43:28 +03:00
LICENSE Update LICENSE 2019-01-22 13:59:12 +02:00
README.md *Add support for proxies *Filter 0 byte files (#42) 2022-08-04 10:43:46 +05:30
Rakefile Upgrade java version to 3.1.1 (#39) 2022-06-01 18:43:28 +03:00
SECURITY.md Microsoft mandatory file (#40) 2022-08-03 16:25:49 +03:00
logstash-output-kusto.gemspec *Add support for proxies *Filter 0 byte files (#42) 2022-08-04 10:43:46 +05:30

README.md

Logstash Output Plugin for Azure Data Explorer (Kusto)

build build Gem Gem

This is a plugin for Logstash.

It is fully free and open source. The license is Apache 2.0.

This Azure Data Explorer (ADX) Logstash plugin enables you to process events from Logstash into an Azure Data Explorer database for later analysis.

Requirements

Installation

To make the Azure Data Explorer plugin available in your Logstash environment, run the following command:

bin/logstash-plugin install logstash-output-kusto

Configuration

Perform configuration before sending events from Logstash to Azure Data Explorer. The following example shows the minimum you need to provide. It should be enough for most use-cases:

output {
	kusto {
            path => "/tmp/kusto/%{+YYYY-MM-dd-HH-mm}.txt"
            ingest_url => "https://ingest-<cluster-name>.kusto.windows.net/"
            app_id => "<application id>"
            app_key => "<application key/secret>"
            app_tenant => "<tenant id>"
            database => "<database name>"
            table => "<target table>"
            json_mapping => "<mapping name>"
            proxy_host => "<proxy host>"
            proxy_port => <proxy port>
            proxy_protocol => <"http"|"https">              
	}
}

More information about configuring Logstash can be found in the logstash configuration guide

Available Configuration Keys

Parameter Name Description Notes
path The plugin writes events to temporary files before sending them to ADX. This parameter includes a path where files should be written and a time expression for file rotation to trigger an upload to the ADX service. The example above shows how to rotate the files every minute and check the Logstash docs for more information on time expressions. Required
ingest_url The Kusto endpoint for ingestion-related communication. See it on the Azure Portal. Required
app_id, app_key, app_tenant Credentials required to connect to the ADX service. Be sure to use an application with 'ingest' privileges. Required
database Database name to place events Required
table Target table name to place events Required
json_mapping Maps each attribute from incoming event JSON strings to the appropriate column in the table. Note that this must be in JSON format, as this is the interface between Logstash and Kusto Required
recovery If set to true (default), plugin will attempt to resend pre-existing temp files found in the path upon startup
delete_temp_files Determines if temp files will be deleted after a successful upload (true is default; set false for debug purposes only)
flush_interval The time (in seconds) for flushing writes to temporary files. Default is 2 seconds, 0 will flush on every event. Increase this value to reduce IO calls but keep in mind that events in the buffer will be lost in case of abrupt failure.
proxy_host The proxy hostname for redirecting traffic to Kusto.
proxy_port The proxy port for the proxy. Defaults to 80.
proxy_protocol The proxy server protocol , is one of http or https.

Note : LS_JAVA_OPTS can be used to set proxy parameters as well (using export or SET options)

export  LS_JAVA_OPTS="-Dhttp.proxyHost=1.2.34 -Dhttp.proxyPort=8989 -Dhttps.proxyHost=1.2.3.4 -Dhttps.proxyPort=8989"

Development Requirements

It is reccomened to use the bundled jdk and jruby with logstash to avoid compatibility issues.

To fully build the gem, run:

bundle install
lock_jars
gem build

Contributing

All contributions are welcome: ideas, patches, documentation, bug reports, and complaints. Programming is not a required skill. It is more important to the community that you are able to contribute. For more information about contributing, see the CONTRIBUTING file.