Questions tagged [prometheus]
The Prometheus monitoring system.
161 questions
Score of 0
1 answer
12 views
Unable to add Prometheus rule
I'm unable to add the following alert rule to Prometheus alert rules. Any idea what's wrong with this alert rule?
- alert: KubernetesPodNotHealthy
expr: sum by (namespace, pod) ...
Score of 0
0 answers
14 views
graphana dashboards show no data for "Pods Memory usage" and "Pods CPU usage"
I'm unable to see data for PODS memory, network and cpu usage under Prometheus grafana dashboard.
I'm running this kubernetes cluster inside minikube on windows.
Here is the query..
sum (rate (...
Score of 1
1 answer
82 views
Least privilege setup for windows_exporter and wuaserv
I'm using the bundled windows_exporter inside Grafana's Alloy service for monitoring purposes of my Windows VMs.
I do not wish to run this as local admin, and am running this service as a gMSA.
This ...
Score of 0
0 answers
75 views
Prometheus systemd-exporter missing metrics from accounting
On the target VM I have enabled a systemd-exporter via docker and nginx as reverse proxy. So far I am getting my metrics into Grafana.
systemd-exporter:
image: prometheuscommunity/systemd-...
Score of 0
0 answers
44 views
Google Cloud Metrics Explorer: Aggregate delta metric to single value for a given time range
I want to answer the following question: How much bytes did a specific VM instance sent in a certain time range (here: 12 hours).
Is there a way to query this information using the Metrics Explorer? ...
Score of 0
0 answers
135 views
Strange behaviour with [inputs.prometheus] with metric_version=2 in telegraf 1.33.0+
i am facing right now a very strange behaviour in Telegraf version 1.33.0 and newer in combination with the prometheus input plugin and the influxdb v2 output plugin.
Assume follwing telegraf.conf
[...
Score of 0
1 answer
170 views
Use a static proxy IP for a pod in Kubernetes
I deployed a SNMP_exporter instance in my Kubernetes cluster (AKS). To be quick, this service is use to get SNMP data from servers or hardware. Some of these equipments need to have the service IP to ...
Score of 0
1 answer
87 views
Why do I see a constant graph for the rate[1m] in grafana?
I have setup a test project where a java client sends test metric to prometheus. It basically keeps calling Counter.inc()
I can see the metric in prometheus and grafana.
In grafana querying for the ...
Score of 0
0 answers
617 views
How to access localhost of host by process running in docker container (grafana/prometheus)
I started a prometheus instance (2.53.4 LTS) on a linux machine (Kubuntu) just for testing purposes.
It runs as a local process and listens on localhost.
I can see the report of the instance in ...
Score of 0
0 answers
120 views
Use central monitoring for multiple k8s cluster or each have their own
Is it better to monitor multiple k8s clusters by kube Prometheus stack separately or in single kube Prometheus stack that deployed in one cluster also monitors the others?
As there is complexity in ...
Score of 1
0 answers
600 views
Default prometheus helm installation in kubernetes fails to run prometheus-server pod
I have a kubernetes cluster with 4 nodes (1 control plane, 3 workers) which are almost completely bare-metal - so no clouds, no nothing, just 4 machines with public IP.
I was able to successfully run ...
Score of 1
1 answer
461 views
ceph manager process hung due to high memory usages
I have observed that in one of my ceph manager nodes ceph-mgr process died due to high memory usages. The thread mentioned in the log in prometheus. So it is suspected that prometheus put some large ...
Score of 0
0 answers
476 views
Understanding Prometheus Regex Relabeling
We are migrating our monitoring infrastructure to Prometheus. We're using the prometheus-sd-exporter for Netbox to generate an http_sd_config to get scrape data. Because of the way that nodes have ...
Score of -1
1 answer
314 views
How to force an alert check in Prometheus?
Just like in Nagios we have "reschedule check" in order to not wait for 10min for the check to run in order to see if what we did fixed an issue - is there a similar operation in Prometheus ?...
Score of 0
1 answer
396 views
What are differences between 5XX, 5.* and 5.. for HTTPcode of PromQL/prometheus
In then Promql/Prometheus, we can pass 5xx, 5.* and 5.. in the query and check the http status. Sometimes are gives same results.
Eg.
http_requests_total{status!~"4XX"} or
...