How to setup a egree to azure blob #2263
-
Hi team, I'd like to test dotnet-monitor to publish gcdump on azure. 1 - I have setup a azure blog storage with a container
3 - I'll do a port-forward to access the api I am sure it is a problem with configuration, can you help me? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
When using an egress provider, the diagnostic artifact is sent to the configured provider (in your case, an Azure Blob storage account). The HTTP response content will be empty but the status code will be a 202. Additionally, a Because of this, we do not recommend that you use a browser to invoke the artifact routes ( We recommend that you use a command line tool, such as curl.exe, to invoke the URL. If using curl, you'll want to have it log more verbosely (e.g. |
Beta Was this translation helpful? Give feedback.
When using an egress provider, the diagnostic artifact is sent to the configured provider (in your case, an Azure Blob storage account). The HTTP response content will be empty but the status code will be a 202. Additionally, a
Location
header is sent as part of the response that tells you where you can monitor the operation.Because of this, we do not recommend that you use a browser to invoke the artifact routes (
/dump
,/gcdump
,/trace
, etc). Your browser may have attempted to preload the URL before you submitted thus causing a preemptive request to have occurred and then your request was issued. Since/gcdump
only allows 1 concurrent request, you got a 429 for your request.We recommen…