We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have two questions.
Q1) README.md says
NodeCPUUsage > 50%
While prometheus-rules/cpu-usage.rules is as follows:
IF (100 - (avg by (instance) (irate(node_cpu{name="node-exporter",mode="idle"}[5m])) * 100)) > 75
CPU Usage threshold could be 75% rather than 50%, right?
Q2) Label "name" doesn't work actually. In my environment, dashboard of node_cpu is as follows:
node_cpu{..., kubernetes_name="prometheus-node-exporter", ...} = 0.15...
So, alert rule label condtion should be as follows, right?:
IF (100 - (avg by (instance) (irate(node_cpu{kubernetes_name="node-exporter",mode="idle"}[5m])) * 100)) > 75
The text was updated successfully, but these errors were encountered:
@fuminori-ido-m unfortunately I don't have time to work on this project, however you're free to create your own fork.
Sorry, something went wrong.
No branches or pull requests
I have two questions.
Q1) README.md says
While prometheus-rules/cpu-usage.rules is as follows:
CPU Usage threshold could be 75% rather than 50%, right?
Q2) Label "name" doesn't work actually. In my environment, dashboard of node_cpu is as follows:
So, alert rule label condtion should be as follows, right?:
The text was updated successfully, but these errors were encountered: