Hi
We have installed the process exporter in Linux machines to monitor the processes in Prometheus. We are monitoring the processess using "namedprocess_namegroup_num_procs" and "namedprocess_namegroup_states".
We are getting the values more than 1 for each processess. So that we are not able to calculate the the values in percentage.
Solution
Solution that we have tried is "avg_over_time(namedprocess_namegroup_num_procs{job=~"Appops_.*"} [$__interval]) >bool 0 "
to make the value either 0 or 1 So that it will be easy to calculate in percentage. But we are not getting the correct values in percentage.
Please help us on the Calculating the percentage for the processess.