-
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
Add memcached module with stats metricset #3693
Conversation
46100ac
to
93b13d3
Compare
jenkins, retest it |
jenkins, retest it |
CHANGELOG.asciidoc
Outdated
@@ -98,6 +98,7 @@ https://github.com/elastic/beats/compare/v5.1.1...master[Check the HEAD diff] | |||
- The Docker, Kafka, and Prometheus modules are now Beta, instead of experimental. {pull}3525[3525] | |||
- The HAProxy module is now GA, instead of experimental. {pull}3525[3525] | |||
- Add the ability to collect the environment variables from system processes. {pull}3337[3337] | |||
- Add memcached module with stats metricset. |
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.
Link to PR please :)
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.
added
metricbeat/docs/fields.asciidoc
Outdated
|
||
|
||
[float] | ||
=== memcached.stats.uptime |
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.
Is this seconds? Should we have it as uptime.secs
then?
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.
yes, changed it to uptime.sec
.
|
||
func New(base mb.BaseMetricSet) (mb.MetricSet, error) { | ||
|
||
logp.Warn("BETA: The docker container metricset is beta") |
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.
s/docker/memcached
d4107de
to
8c4a0c2
Compare
A new module "memcached" was added which gathers metrics from https://memcached.org/. The
stats
command is used in thestats
metricset to gather all infos about the service.