-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Foundation for Logstash Metricbeat module #5540
Conversation
return port | ||
} | ||
|
||
func GetConfig(metricset string) map[string]interface{} { |
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.
exported function GetConfig should have comment or be unexported
return host | ||
} | ||
|
||
func GetEnvPort() string { |
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.
exported function GetEnvPort should have comment or be unexported
|
||
import "os" | ||
|
||
func GetEnvHost() string { |
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.
exported function GetEnvHost should have comment or be unexported
return port | ||
} | ||
|
||
func GetConfig(metricset string) map[string]interface{} { |
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.
exported function GetConfig should have comment or be unexported
return host | ||
} | ||
|
||
func GetEnvPort() string { |
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.
exported function GetEnvPort should have comment or be unexported
|
||
import "os" | ||
|
||
func GetEnvHost() string { |
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.
exported function GetEnvHost should have comment or be unexported
48ebdc7
to
02f8a76
Compare
0811a7c
to
5bfbd34
Compare
This are the base documents for the Logstash Metricbeat module. This allows to easily add more metricsets and metricsets in the future. So far it is marked as experimental. Having this module should also help to sync the document structure with the Logstash filebeat module (@ph).
6a833cb
to
42b7599
Compare
Thanks, added on more not the issue. |
This are the base documents for the Logstash Metricbeat module. This allows to easily add more metricsets and metricsets in the future. So far it is marked as experimental.
Having this module should also help to sync the document structure with the Logstash filebeat module (@ph).