I'd like not to pull the metrics but push my own metrics to Prometheus after running some tests and recording the results to a json file. I am thinking to create grafana dashboard (based on Prometheus datasource) with green/red gauge for each test.
Example:
{
"servers": {
"server1": {
"ping": 1,
"auth": 1,
"push": 0
}
}
}
Is it possible?
Thank you
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
To post to this group, send email to prometheus-developers@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/bdb05b24-618d-4856-b53a-619221d2f88c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
All things are possible, but the closest thing to a paved path is probably using the push gatway:
https://github.com/prometheus/pushgateway--Matt
On Mon, Aug 13, 2018 at 4:09 PM, <epich...@gmail.com> wrote:
Hi,
I'd like not to pull the metrics but push my own metrics to Prometheus after running some tests and recording the results to a json file. I am thinking to create grafana dashboard (based on Prometheus datasource) with green/red gauge for each test.
Example:
{
"servers": {
"server1": {
"ping": 1,
"auth": 1,
"push": 0
}
}
}
Is it possible?
Thank you
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsubscri...@googlegroups.com.
To post to this group, send email to prometheus-developers@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/bdb05b24-618d-4856-b53a-619221d2f88c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
----Matt
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
To post to this group, send email to prometheus-developers@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/CAGyBzcw9CX_9BJfrpw1AkigWSOosGcXj-GDjx6p50f%3DyYFGxQg%40mail.gmail.com.
Thank you for a quick reply, I've tried that and trying to deal with "bad gateway" error when creating a prometheus datasource in grafana.
On Monday, 13 August 2018 16:30:30 UTC-4, Matt Doughty wrote:
> All things are possible, but the closest thing to a paved path is probably using the push gatway:
> https://github.com/prometheus/pushgateway
>
>
>
> --Matt
>
>
> On Mon, Aug 13, 2018 at 4:09 PM, <epich...@gmail.com> wrote:
> Hi,
>
>
>
> I'd like not to pull the metrics but push my own metrics to Prometheus after running some tests and recording the results to a json file. I am thinking to create grafana dashboard (based on Prometheus datasource) with green/red gauge for each test.
>
>
>
> Example:
>
> {
>
> "servers": {
>
>
>
> "server1": {
>
> "ping": 1,
>
> "auth": 1,
>
> "push": 0
>
> }
>
> }
>
> }
>
>
>
> Is it possible?
>
>
>
> Thank you
>
>
>
>
>
>
>
>
>
> --
>
> You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
>
> To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
>
> To post to this group, send email to prometheus...@googlegroups.com.
>
> To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/bdb05b24-618d-4856-b53a-619221d2f88c%40googlegroups.com.
>
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
>
> --
>
> --Matt
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
To post to this group, send email to prometheus-developers@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/075e6f98-9a2a-437a-ae64-f5f8df2cf9a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I'm not sure I understand. Do you have the pushgateway setup with prometheus scraping it? Where are you seeing the bad gateway errors?--Matt
On Mon, Aug 13, 2018 at 4:33 PM, <epich...@gmail.com> wrote:
Thank you for a quick reply, I've tried that and trying to deal with "bad gateway" error when creating a prometheus datasource in grafana.
On Monday, 13 August 2018 16:30:30 UTC-4, Matt Doughty wrote:
> All things are possible, but the closest thing to a paved path is probably using the push gatway:
> https://github.com/prometheus/pushgateway
>
>
>
> --Matt
>
>
> On Mon, Aug 13, 2018 at 4:09 PM, <epich...@gmail.com> wrote:
> Hi,
>
>
>
> I'd like not to pull the metrics but push my own metrics to Prometheus after running some tests and recording the results to a json file. I am thinking to create grafana dashboard (based on Prometheus datasource) with green/red gauge for each test.
>
>
>
> Example:
>
> {
>
> "servers": {
>
>
>
> "server1": {
>
> "ping": 1,
>
> "auth": 1,
>
> "push": 0
>
> }
>
> }
>
> }
>
>
>
> Is it possible?
>
>
>
> Thank you
>
>
>
>
>
>
>
>
>
> --
>
> You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
>
> To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsubscri...@googlegroups.com.
>
> To post to this group, send email to prometheus...@googlegroups.com.
>
> To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/bdb05b24-618d-4856-b53a-619221d2f88c%40googlegroups.com.
>
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
>
> --
>
> --Matt
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsubscri...@googlegroups.com.
To post to this group, send email to prometheus-developers@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/075e6f98-9a2a-437a-ae64-f5f8df2cf9a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
----Matt
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
To post to this group, send email to prometheus-developers@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/CAGyBzcxV4TJJf6iL8S-un8EYg4YUy1Tp%3DREgyuj-%2BCRSO3qPQQ%40mail.gmail.com.
> > To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
>
> >
>
> > To post to this group, send email to prometheus...@googlegroups.com.
>
> >
>
> > To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/bdb05b24-618d-4856-b53a-619221d2f88c%40googlegroups.com.
>
> >
>
> > For more options, visit https://groups.google.com/d/optout.
>
> >
>
> >
>
> >
>
> >
>
> >
>
> > --
>
> >
>
> > --Matt
>
>
>
> --
>
> You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
>
> To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/075e6f98-9a2a-437a-ae64-f5f8df2cf9a5%40googlegroups.com.
>
>
>
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
>
> --
>
> --Matt
>
>
>
>
>
> --
>
> You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
>
> To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
>
> To post to this group, send email to prometheus...@googlegroups.com.
>
> To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/CAGyBzcxV4TJJf6iL8S-un8EYg4YUy1Tp%3DREgyuj-%2BCRSO3qPQQ%40mail.gmail.com.
>
>
>
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
To post to this group, send email to prometheus-developers@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-developers/84303f79-c7fd-4d58-a06b-7736f1557c5c%40googlegroups.com.