Currently, metric data is sent periodically, but I need to send it whenever I want. #7216
Unanswered
sreenathk333
asked this question in
Q&A
Replies: 1 comment
-
You can implement your own MetricReader that suits your requirements.
You might like delta temporality metrics.. Rather than recording the cumulative state of all measurements, they record the changes since the last report. If a particular series has no new measurements, it won't be exported. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My scenario is different. Some metric data needs to be sent every minute, another set every 30 minutes, and some counters should be sent only when they are updated. So, periodic sending is not feasible. If I set it to 1 minute, it sends all metric data with previous values, unnecessarily filling the server storage with duplicate data.
Beta Was this translation helpful? Give feedback.
All reactions