HelloI want to create metrics which I got from Postgres db.So far the 
metrics appear in Prometheus using this query-exporter 
<https://github.com/albertodonato/query-exporter>The problem is that both 
metrics are big integers in Postgres so the values which i`ve got are not 
the real ones for some reason..This is a code sample for my queries

databases:
db1:
dsn: postgres://........

metrics:
delay:
type: histogram
description: A sample gauge
id:
type: histogram
description: A sample summaryqueries:
query1:
interval: 5s
databases: [db1]
metrics: [delay, id]
sql: SELECT delay AS delay, id as id from table

These are metrics got from prometheus

id_bucket{container="prom-postgres-monitor", database="db1", 
endpoint="http", instance="0.0.0.0:9560", job="prom-postgres-monitor", 
le="+Inf", namespace="dev", pod="prom-postgres-monitor-g3g43g34g3g", 
service="prom-postgres-monitor"} 
6141id_bucket{container="prom-postgres-monitor", database="db1", 
endpoint="http", instance="0.0.0.0:9560", job="prom-postgres-monitor", 
le="0.005", namespace="dev", pod="prom-postgres-monitor-g3g43g34g3g", 
service="prom-postgres-monitor"} 
0id_bucket{container="prom-postgres-monitor", database="db1", 
endpoint="http", instance="0.0.0.0:9560", job="prom-postgres-monitor", 
le="0.005", namespace="dev", pod="prom-postgres-monitor-g3g43g34g3g", 
service="prom-postgres-monitor"} 
0id_bucket{container="prom-postgres-monitor", database="db1", 
endpoint="http", instance="0.0.0.0:9560", job="prom-postgres-monitor", 
le="0.005", namespace="dev", pod="prom-postgres-monitor-g3g43g34g3g", 
service="prom-postgres-monitor"} 0

Most of them are zeros but some real values which i have in postgres are - 
10024958860, 10027398870, 10027401148 etc..

What metric option should i use to get some real data - enum, histogram, 
summary etc..

Also does it matter what is the data type which i have in postgres - for 
example as i said now is big integer and i`m not shure if Prometheus is ok 
with this values ?

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/prometheus-users/989d8ae3-c391-4125-9ac5-a1d752585c6bn%40googlegroups.com.

Reply via email to