How should we architect for case where 3rd party API itself provides metric details and unable to instrument for OpenTelemetry directly #1013
Closed
fvarga01
announced in
Community Discussions
Replies: 1 comment
-
|
One possible option is to implement this as a polling receiver in the Otel Collector (this is essentially how Prometheus receiver works). The receiver may be configurable/extensible to support various APIs to poll. Depending on how similar or dissimilar they are it may be possible to support new APIs purely via new runtime configuration or they may need a new code inside the polling receiver. |
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.
-
New to OpenTelemetry
Scenario (simplified):
example:
{ "name":"app2"
"time":"20220328 01:00:00"
"cpu-usage":100}
Question:
What is the recommended architectural pattern for the above scenario. Basically, we want to extract metrics data from various sources which we do not have permissions to instrument. Some thoughts:
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions