AzureMonitor: Parse non-fatal errors for Logs (#51320)

This commit is contained in:
Andres Martinez Gotor
2022-06-24 08:56:58 +02:00
committed by GitHub
parent 9e80e44b45
commit b10ddfdf8c
7 changed files with 174 additions and 6 deletions
@@ -0,0 +1,40 @@
{
"tables": [
{
"name": "PrimaryResult",
"columns": [
{
"name": "OperationName",
"type": "string"
},
{
"name": "Level",
"type": "string"
}
],
"rows": [
[
"Create or Update Virtual Machine",
"Informational"
]
]
}
],
"error": {
"code": "PartialError",
"message": "There were some errors when processing your query.",
"details": [
{
"code": "EngineError",
"message": "Something went wrong processing your query on the server.",
"innererror": {
"code": "-2133196797",
"message": "The results of this query exceed the set limit of 1 records.",
"severity": 2,
"severityName": "Error"
}
}
]
}
}