08 May 2024 10:28 AM
I have a browser monitor running for a URL, with a use case of "login" and "logout" with 11 synthetic events. This URL has 4 internal entry points, load balanced. What would like is the following:
Is this feasible? How?
Thank you.
Solved! Go to Solution.
08 May 2024 03:29 PM
Hi Damián,
I think that is not possible with Synthetics. But if they are only HTTP get request or something simple, maybe workflows? It this use case for latest Dynatrace / Grail?
Best regards
08 May 2024 03:33 PM
Workflows are not possible as this is Dynatrace Managed? Maybe using post-execution scripts?
08 May 2024 04:11 PM
You can put all 4 urls into one HTTP Monitor, disable the status code check for each request and add your own check in the post-execution scripts which sets a variable. You can then check this variable in the last post-execution script and decide what to do. This is fine is the requests only fail with status codes but if they fail due to a network error, connection timout etc, the monitor will fail on that request. This cannot be overridden.
You other option would be to have 4 HTTP Monitors and then use a metric event to check that at least one was successful
08 May 2024 04:58 PM
Thank you Hannah!
I'll check you're suggestion.