Skip to content

Commit

Permalink
[Metricbeat] add more metric collection into pubsub metricset (#17600) (
Browse files Browse the repository at this point in the history
#17651)

* add more metric collection into pubsub metricset
* fix docs.asciidoc for pubsub

(cherry picked from commit 50c6e86)
  • Loading branch information
kaiyan-sheng committed Apr 12, 2020
1 parent 628854d commit f42e2fe
Show file tree
Hide file tree
Showing 8 changed files with 180 additions and 121 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix vsphere VM dashboard host aggregation visualizations. {pull}17555[17555]
- Fix azure storage dashboards. {pull}17590[17590]
- Metricbeat no longer needs to be started strictly after Logstash for `logstash-xpack` module to report correct data. {issue}17261[17261] {pull}17497[17497]
- Fix pubsub metricset to collect all GA stage metrics from gcp stackdriver. {issue}17154[17154] {pull}17600[17600]
- Add privileged option so as mb to access data dir in Openshift. {pull}17606[17606]
- Fix "ID" event generator of Google Cloud module {issue}17160[17160] {pull}17608[17608]
- Fix storage metricset to allow config without region/zone. {issue}17623[17623] {pull}17624[17624]
Expand Down
2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/googlecloud/fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 24 additions & 4 deletions x-pack/metricbeat/module/googlecloud/pubsub/_meta/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,34 @@
"googlecloud": {
"labels": {
"resource": {
"topic_id": "test-ks"
"subscription_id": "test-ks"
}
},
"pubsub": {
"snapshot": {
"backlog_bytes": 19,
"backlog_bytes_by_region": 19,
"num_messages": 4,
"num_messages_by_region": 4,
"oldest_message_age": 69319,
"oldest_message_age_by_region": 69319
},
"subscription": {
"backlog_bytes": 20,
"num_undelivered_messages": 4,
"oldest_unacked_message_age": 435752
"backlog_bytes": 0,
"num_undelivered_messages": 0,
"oldest_retained_acked_message_age": 0,
"oldest_retained_acked_message_age_by_region": 0,
"oldest_unacked_message_age": 0,
"oldest_unacked_message_age_by_region": 69277,
"retained_acked_bytes": 0,
"retained_acked_bytes_by_region": 0,
"unacked_bytes_by_region": 19
},
"topic": {
"oldest_retained_acked_message_age_by_region": 0,
"oldest_unacked_message_age_by_region": 69319,
"retained_acked_bytes_by_region": 0,
"unacked_bytes_by_region": 76
}
}
},
Expand Down

This file was deleted.

61 changes: 0 additions & 61 deletions x-pack/metricbeat/module/googlecloud/pubsub/_meta/data_topic.json

This file was deleted.

Loading

0 comments on commit f42e2fe

Please sign in to comment.