-
Notifications
You must be signed in to change notification settings - Fork 19
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 static label in metrics #36
Comments
@ahmedaall Just add class_queries:
interface_info:
class_name: l1PhysIf
query_parameter: "?rsp-subtree=children&rsp-subtree-include=stats&rsp-subtree-class=ethpmPhysIf,eqptIngrBytes5min,eqptEgrBytes5min,eqptIngrDropPkts5min,eqptEgrDropPkts5min&query-target-filter=and(ne( l1PhysIf.adminSt, \"down\"))"
metrics:
- name: interface_oper_speed
value_name: l1PhysIf.children.[ethpmPhysIf].attributes.operSpeed
type: gauge
help: The current operational speed of the interface, in bits per second.
value_transform:
'unknown': 0
'100M': 100000000
'1G': 1000000000
'10G': 10000000000
'25G': 25000000000
'40G': 40000000000
'100G': 100000000000
'400G': 400000000000
labels:
#- property_name: l1PhysIf.attributes.id
# regex: "^(?P<id>.*)"
- property_name: l1PhysIf.attributes.dn
regex: "^topology/pod-(?P<podid>[1-9][0-9]*)/node-(?P<nodeid>[1-9][0-9].*)/sys/phys-\\[(?P<port>.+)\\]"
staticlabels:
- key: mystaticlabel
value: mystaticvalue |
@thenodon It works perfectly ! thank you |
Great to hear. |
I was looking for exactly this! Could we add it to the readme? :) |
@camrossi yes we should. I will reopen this ticket so its added in next release. |
This is fixed in commit a49070a branch issue_42 with an update to readme |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @thenodon :
Describe the bug
Is it possible to add static label in a class query :
By static I mean that this label doesn't correspond any class attribut. It is like a custom label that is added to the config
The text was updated successfully, but these errors were encountered: