зеркало из
1
0
Форкнуть 0
* new sdk version
* update changelog
This commit is contained in:
Tamir Kamara 2019-04-16 12:29:39 +03:00 коммит произвёл Bar Arnon
Родитель 7e798685b2
Коммит fcb0786efa
4 изменённых файлов: 23 добавлений и 7 удалений

Просмотреть файл

@ -1,8 +1,22 @@
# Changelog
## 0.1.0
- Plugin created with the logstash plugin generator
- Plugin created with the logstash plugin generator
## 0.1.6
- plugin published to the public. supports ingestion json events into a specific table-database (without dynamic routing currently)
- plugin published to the public. supports ingestion json events into a specific table-database (without dynamic routing currently)
## 0.1.7
- fixed app_key (password) bug, include 0.1.7 of the kusto-java-sdk to allow working through a proxy
- fixed app_key (password) bug, include 0.1.7 of the kusto-java-sdk to allow working through a proxy
## 0.2.0
- move to version 1.0.0-BETA-01 of azure-kusto-kava sdk
- move to version 1.0.0-BETA-01 of azure-kusto-java sdk
## 0.3.0
- move to version 1.0.0-BETA-04 of azure-kusto-java sdk
- better support multiple kusto outputs running in parallel

Просмотреть файл

@ -9,7 +9,7 @@ class LogStash::Outputs::Kusto < LogStash::Outputs::Base
# This handles the overall logic and communication with Kusto
#
class Ingestor
require 'kusto/kusto-ingest-1.0.0-BETA-01-jar-with-dependencies.jar'
require 'kusto/kusto-ingest-1.0.0-BETA-04-jar-with-dependencies.jar'
RETRY_DELAY_SECONDS = 3
DEFAULT_THREADPOOL = Concurrent::ThreadPoolExecutor.new(

Просмотреть файл

@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'logstash-output-kusto'
s.version = '0.2.0'
s.version = '0.3.0'
s.licenses = ['Apache-2.0']
s.summary = 'Writes events to Azure Data Explorer (Kusto)'
s.description = 'This is a logstash output plugin used to write events to an Azure Data Explorer (a.k.a Kusto)'
@ -23,10 +23,12 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'logstash-codec-json_lines'
s.add_runtime_dependency 'logstash-codec-line'
s.add_development_dependency "logstash-devutils"
s.add_development_dependency 'logstash-devutils'
s.add_development_dependency 'flores'
s.add_development_dependency 'logstash-input-generator'
s.add_development_dependency 'ruby-maven', '~> 3.3.11'
# Jar dependencies
# s.requirements << "jar 'com.microsoft.azure.kusto:kusto-ingest', '1.0.0-BETA-04'"
s.add_runtime_dependency 'jar-dependencies'
end