--
You received this message because you are subscribed to the Google Groups "Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-use...@googlegroups.com.
To post to this group, send email to promethe...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-users/6b47c3c8-d105-458d-bce3-a5edf267317f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I would also recommend Grafana for any graphing/dashboards, but for the record, you can overlay multiple metrics on a graph in Prometheus. One solution (specifically for your case) isnode_memory_MemFree{instance="ins1",job="system"}ornode_memory_MemTotal{instance="ins1",job="system"}ornode_memory_MemAvailable{instance="ins1",job="system"}The other option is{__name__=~"node_memory_MemFree|node_memory_MemTotal|node_memory_MemAvailable",instance="ins1",job="system"}But, getting back to the specifics of your case, the MemFree, MemTotal and MemAvailable should be labels, not part of the metric name, to begin with. Then you would not have this problem (and loads of similar ones) to begin with.
--On Wednesday, July 18, 2018 at 4:49:31 PM UTC+2, Ben Kochie wrote:Cheers,Alin.This is not supported by the current UI. I would recommend using Grafana, which can overlay multiple query results in the same graph.On Wed, Jul 18, 2018 at 4:34 PM <vikas....@gmail.com> wrote:I want below metrics in one graph, can some suggest single query please,--
1. node_memory_MemFree{instance="ins1",job="system"}
2. node_memory_MemTotal{instance="ins1",job="system"}
3. node_memory_MemAvailable{instance="ins1",job="system"}
You received this message because you are subscribed to the Google Groups "Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-use...@googlegroups.com.
To post to this group, send email to promethe...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-users/6b47c3c8-d105-458d-bce3-a5edf267317f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-use...@googlegroups.com.
To post to this group, send email to promethe...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-users/b9f04b4c-b5df-44e1-b96d-4c0b4049136b%40googlegroups.com.