Created
September 25, 2023 13:11
-
-
Save waldekmastykarz/983e479a703b6d83960295e26ef24089 to your computer and use it in GitHub Desktop.
Sample simulation of latency on Microsoft Graph API requests using Microsoft 365 Developer Proxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"plugins": [ | |
{ | |
"name": "LatencyPlugin", | |
"enabled": true, | |
"pluginPath": "~appFolder\\plugins\\m365-developer-proxy-plugins.dll", | |
"configSection": "latencyPlugin" | |
} | |
], | |
"urlsToWatch": [ | |
"https://graph.microsoft.com/v1.0/*", | |
"https://graph.microsoft.com/beta/*" | |
], | |
"latencyPlugin": { | |
"minMs": 200, | |
"maxMs": 10000 | |
}, | |
"rate": 50, | |
"labelMode": "text", | |
"logLevel": "info" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment