Replies: 1 comment
-
One Issue I see with this, is that what the API returns and what the API accepts on PUT/POST is not always the same. What are examples of the extra load on Dynatrace when a config is PUT? |
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
-
At the moment, when Monaco finds a configuration that already exists, it will always do a PUT against the endpoint to update it even when there are no changes to be made.
In some cases this triggers additional workloads in Dynatrace - and additional load as well.
The suggestion is to compare - on Monaco side - the existing object on the Dynatrace side with the new object that is to be applied. If the two objects are the same then we should skip the PUT altogether.
Beta Was this translation helpful? Give feedback.
All reactions