-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure.proto
173 lines (109 loc) · 3.65 KB
/
azure.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
syntax = "proto3";
import "google/protobuf/struct.proto";
import "context.proto";
option csharp_namespace = "SquaredUp.Dashboard.Schema";
package squaredup;
//-------------------------------------------------------------------------------------
//
// Azure related tiles (app insights, log analytics)
//
//-------------------------------------------------------------------------------------
// tile/azureappinsights-as-scalar
message AzureInsightsAsScalarTileConfig {
AzureInsightsAsScalarTileConfig_Source source = 1;
AzureInsightsAsScalarTileConfig_Display display = 2;
AzureInsightsAsScalarTileConfig_Context context = 3;
}
message AzureInsightsAsScalarTileConfig_Context {
}
message AzureInsightsAsScalarTileConfig_Source {
// Content of the query body
string contentBody = 1;
// Method e.g. POST
string method = 2;
// e.g. application/json
string content_type = 3;
string _security = 4;
}
message AzureInsightsAsScalarTileConfig_Display {
// Font size (!! naming convention incorrect !!)
double fontsize = 1;
// Whether to coerce objects
bool coerce_object = 2;
// e.g. 'column'
string zoom = 3;
}
//-------------------------------------------------------------------------------------
// tile/azureappinsights-as-table
message AzureInsightsAsTableTileConfig {
AzureInsightsAsTableTileConfig_Source source = 1;
AzureInsightsAsTableTileConfig_Display display = 2;
AzureInsightsAsTableTileConfig_Context context = 3;
}
message AzureInsightsAsTableTileConfig_Context {
}
message AzureInsightsAsTableTileConfig_Source {
// Content of the query body
string contentBody = 1;
// Method e.g. POST
string method = 2;
// e.g. application/json
string content_type = 3;
string _security = 4;
}
message AzureInsightsAsTableTileConfig_Display {
// Whether to display table headers
bool show_headers = 1;
// e.g. 'column'
string zoom = 2;
}
//-------------------------------------------------------------------------------------
// tile/azureloganalytics-as-scalar
message AzureLogAnalyticsAsScalarTileConfig {
AzureLogAnalyticsAsScalarTileConfig_Source source = 1;
AzureLogAnalyticsAsScalarTileConfig_Display display = 2;
AzureLogAnalyticsAsScalarTileConfig_Context context = 3;
}
message AzureLogAnalyticsAsScalarTileConfig_Context {
}
message AzureLogAnalyticsAsScalarTileConfig_Source {
// Content of the query body
string contentBody = 1;
// Method e.g. POST
string method = 2;
// e.g. application/json
string content_type = 3;
string _security = 4;
}
message AzureLogAnalyticsAsScalarTileConfig_Display {
// Font size (!! naming convention incorrect !!)
double fontsize = 1;
// Whether to coerce objects
bool coerce_object = 2;
// e.g. 'column'
string zoom = 3;
}
//-------------------------------------------------------------------------------------
// tile/azureloganalytics-as-table
message AzureLogAnalyticsAsTableTileConfig {
AzureLogAnalyticsAsTableTileConfig_Source source = 1;
AzureLogAnalyticsAsTableTileConfig_Display display = 2;
AzureLogAnalyticsAsTableTileConfig_Context context = 3;
}
message AzureLogAnalyticsAsTableTileConfig_Context {
}
message AzureLogAnalyticsAsTableTileConfig_Source {
// Content of the query body
string contentBody = 1;
// Method e.g. POST
string method = 2;
// e.g. application/json
string content_type = 3;
string _security = 4;
}
message AzureLogAnalyticsAsTableTileConfig_Display {
// Whether to display table headers
bool show_headers = 1;
// e.g. 'column'
string zoom = 2;
}