Azure Monitor: Log Analytics response to data frames (#25297)

Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
This commit is contained in:
Kyle Brandt
2020-06-05 12:32:10 -04:00
committed by GitHub
co-authored by Ryan McKinley
parent c3549f845e
commit ef61a64c46
13 changed files with 594 additions and 673 deletions
@@ -0,0 +1,59 @@
{
"tables": [
{
"name": "PrimaryResult",
"columns": [
{
"name": "XBool",
"type": "bool"
},
{
"name": "XString",
"type": "string"
},
{
"name": "XDateTime",
"type": "datetime"
},
{
"name": "XDynamic",
"type": "dynamic"
},
{
"name": "XGuid",
"type": "guid"
},
{
"name": "XInt",
"type": "int"
},
{
"name": "XLong",
"type": "long"
},
{
"name": "XReal",
"type": "real"
},
{
"name": "XTimeSpan",
"type": "timespan"
}
],
"rows": [
[
true,
"Grafana",
"2006-01-02T22:04:05.1Z",
"[{\"person\":\"Daniel\"},{\"cats\":23},{\"diagnosis\":\"cat problem\"}]",
"74be27de-1e4e-49d9-b579-fe0b331d3642",
2147483647,
9223372036854775807,
1.7976931348623157e+308,
"00:00:00.0000001"
]
]
}
]
}