Code Monkey home page Code Monkey logo

Comments (6)

geekdave avatar geekdave commented on July 23, 2024 8

Thanks for the detailed response @ncabatoff - makes total sense.

num_procs pre-populated with a value of zero even if no processes are found.

This would be the most ideal solution for me, but I understand it's extra work. I'd be grateful if you'd consider this enhancement for a future release. Thanks!

from process-exporter.

TarekAS avatar TarekAS commented on July 23, 2024 6

We could use an up like metric for processes

from process-exporter.

ncabatoff avatar ncabatoff commented on July 23, 2024 4

Very happy to hear that you find it useful. I don't think you're doing anything wrong. If I understand your problem correctly it's a classic issue with Prometheus-style monitoring. Unless Prometheus has seen a given metric recently, it doesn't know about it. Thus the alert rule never fires initially, because namedprocess_namegroup_num_procs is not < 1: it's undefined.

If you know the names of the namegroups you care about, you could also check for their absence, e.g.

expr: namedprocess_namegroup_num_procs{groupname="X"} < 1 or absent(namedprocess_namegroup_num_procs{groupname="X"})

That's still not quite enough, because for a binary operation like or to work the labelsets must match exactly on either side. One easy way to make that work (by eliminating labels) is to use an aggregation like sum(), e.g.

expr: sum(namedprocess_namegroup_num_procs{groupname="X"}) < 1 or absent(namedprocess_namegroup_num_procs{groupname="X"})

There are other less hacky options like ignoring or on, see the operators page for details.

If you don't want to hardcode the names of the namegroups you care about, I don't have any good suggestions with the existing process-exporter, but if you think of any I'd love to hear them.

One possibility might be extend process-exporter so that any names given explicitly (as -procnames or with untemplated "name" values in the config file) would get num_procs pre-populated with a value of zero even if no processes are found. I'm going to leave this issue open, I might come back and implement that at some point.

from process-exporter.

ncabatoff avatar ncabatoff commented on July 23, 2024

Understood @geekdave, I'll see what I can do. I'm very open to adding this feature, just have other more pressing issues at the moment.

from process-exporter.

infernix avatar infernix commented on July 23, 2024

Prepopulating with zero using a runtime flag or config option would be great. Any progress on that yet?

from process-exporter.

AdityaNaresh avatar AdityaNaresh commented on July 23, 2024

Any update on this?

from process-exporter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.