-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Logstash doris output plugin #3800
Conversation
Good work! Please add English doc ~ |
@@ -0,0 +1,198 @@ | |||
--- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to add this doc title in the side bar:
open the docs/.vuepress/sidebar/en.js
and search extending-doris/
@@ -0,0 +1,198 @@ | |||
--- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to add this doc title in the side bar:
open the docs/.vuepress/sidebar/zh-CN.js
and search 扩展功能
Gem::Specification.new do |s| | ||
s.name = 'logstash-output-doris' | ||
s.version = '0.1.0' | ||
s.licenses = ['Apache License (2.0)'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apache License (2.0)
seems not a valid license name in my env.
Should it be Apache-2.0
s.add_runtime_dependency 'mini_cache', ">= 1.0.0", "< 2.0.0" | ||
s.add_runtime_dependency "rest-client", '>= 1.8.0' | ||
|
||
s.add_development_dependency 'logstash-devutils' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add version info for following 3 dependencies
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This plugin is used to output data to Doris for logstash
Use the HTTP protocol to interact with the Doris FE Http interface
Load data through Doris's stream load
#3809