-
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 mapping for munin and options to override service type and name #10322
Changes from 1 commit
965ae7d
3783213
68841a3
85208b1
81fc075
32fed9c
b0223c7
0a29aa1
72932fa
5427e78
aa1c230
d6d437f
b122bc9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,10 @@ | |
Munin node metrics exporter | ||
release: beta | ||
fields: | ||
- name: munin | ||
type: group | ||
- name: munin.* | ||
type: object | ||
object_type: double | ||
object_type_mapping_type: 'long' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why long here? I would perhaps expect: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I needed objects to keep being objects, I have added two patterns now, one for the level of groups and another one for the metrics. |
||
description: > | ||
munin contains metrics exposed by a munin node agent | ||
fields: |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 can remove the
.*
part, it seems that's how we normally do it in fields.yml, thetimeseries.instance
code will be easier tooThere 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.
This looks needed in this case, maybe because I am setting up dynamic templates for two levels now.