12 Dec 2019
11:29 PM
- last edited on
18 May 2023
07:27 AM
by
Michal_Gebacki
In plugin.json of ActiveGate plugin, we provide metadata of metrics. What if metrics are dynamic and we don't know what our URL returns. How do we supply metrics to the plugin.json then?
Solved! Go to Solution.
Dear Jayanth
Currently there is no out of the box support for such dynamic metrics.
Although we can imagine plugin.json generator based on data returned by your URL and automatically sending it to Dynatrace server. Due to some limitations regarding metric definition changes previous plugin should be deleted before sending the new one. That would lead to some data gaps but if metrics do not change very often that could work.
Regards,
Peter
ex:
final MonitorMeasure dynamiccompletedCountMeasure = env.createDynamicMeasure(completedCountMeasure, "Platform Name", name);
dynamiccompletedCountMeasure.setValue(completedCount);
No, metrics have to be defined in the plugin configuration file. See my approach below that hight work for you.
I haven't tried from a plugin, but maybe you could register the custom metric dynamically using the Environment API and send the metrics:
https://www.dynatrace.com/support/help/extend-dynatrace/dynatrace-api/environment-api/metric-v1/cust...
I'm not sure if the plugin would stop you when trying to send data for metric keys that are not defined in the JSON. If it does, then you would just push the dynamic data using the Environment API and push the "statically" defined metrics using the plugin.