cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How much data points can be sent simultaneously in ActiveGate extension?

AntonioSousa
DynaMight Guru
DynaMight Guru

When inserting data through API, we can insert several data points in the same API call.

I'm not so sure that is happening when using ActiveGate extensions. I'm using python, and the device.absolute method. When invoked 10 times with different key/values, is it making 10 different calls. Or does it work some other way?

Antonio Sousa
3 REPLIES 3

Mike_L
Dynatrace Guru
Dynatrace Guru

The extensions framework doesn't use the API. Instead it buffers the metric results and sends them in bulk to the Dynatrace server in the same way as it does with regular OneAgent data. You don't have to worry about the API rate limitation with extensions.

Mike

Mike

Thanks for the confirmation. I would imagine that the bulk send happens when the python script ends, or does it use another strategy?

Antonio Sousa

It is on a timer and not specifically at the end of the script execution. The buffer is shared between all extensions and they don't all start and stop at the same time.

Mike

Featured Posts