-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE REQ] Extract Diagnostic Information per API #616
Comments
|
Thanks for reporting, I am also experiencing this issue. |
Not sure if I get you right, but here's a full response body from a configured applicationInsight diagnostic of an API: {
"id": "/subscriptions/***/resourceGroups/***/providers/Microsoft.ApiManagement/service/***/apis/***/diagnostics/applicationinsights",
"type": "Microsoft.ApiManagement/service/apis/diagnostics",
"name": "applicationinsights",
"properties": {
"alwaysLog": "allErrors",
"httpCorrelationProtocol": "W3C",
"verbosity": "information",
"logClientIp": true,
"loggerId": "/subscriptions/***/resourceGroups/***/providers/Microsoft.ApiManagement/service/***/loggers/ApplicationInsightsLogger",
"sampling": {
"samplingType": "fixed",
"percentage": 100
},
"frontend": {
"request": {
"headers": [
"My-Correlation-Id"
],
"body": {
"bytes": 8192,
"sampling": null
}
},
"response": {
"headers": [
"My-Correlation-Id"
],
"body": {
"bytes": 8192,
"sampling": null
}
}
},
"backend": {
"request": {
"headers": [
"My-Correlation-Id"
],
"body": {
"bytes": 8192,
"sampling": null
}
},
"response": {
"headers": [
"My-Correlation-Id"
],
"body": {
"bytes": 8192,
"sampling": null
}
}
},
"tags": null
}
} |
Thank you, that was an oversight on our part. We'll address this. |
Please describe the feature.
When specifying custom diagnostic information on API's, the configuration therefore is currently not extracted.
Example configuration:
This should be supported from my POV, to be able to process a complete API extraction & deployment.
The text was updated successfully, but these errors were encountered: