This message was deleted.
# general
s
This message was deleted.
s
What is the metrics collection interval? The reason could be your
[1m]
in the query. If they are collected at same or higher interval then you will not see any data.
j
I've tried with even 1 day
and no results
s
Make sure your
uri
is non null value that returns the results.
I’ve tried with even 1 day
I day in the
[1m]
here?
a
@Srikanth Chekuri will the actuator metrics be automatically captured? Or do we need to enable via receiver in opentelemetry-collector-metrics?
s
No, they are not automatically captured, but OP mentioned some metrics are not being seen, not that nothing is working. And it is more likely the
[1m]
selection in the promQL. If the metrics are collected every 60s or higher, then promql won’t return data. It has to be something higher. You can verify this by running
sum(rate(signoz_calls_total{}[1m]))
vs
sum(rate(signoz_calls_total{}[2m]))
in testbed.
a
yeah...I remember @Jose Infazon can you check by changing
[1m]
to
[2m]
in promql?