-
Notifications
You must be signed in to change notification settings - Fork 0
/
performance.proto
98 lines (75 loc) · 2.57 KB
/
performance.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
syntax = "proto3";
import "google/protobuf/struct.proto";
import "scope.proto";
import "timeframe.proto";
import "performance_shared.proto";
option csharp_namespace = "SquaredUp.Dashboard.Schema";
package squaredup;
//-------------------------------------------------------------------------------------
//
// All SCOM performance (allscomperf)
//
//-------------------------------------------------------------------------------------
// tile/allscomperf
message AllScomPerfTileConfig {
CommonPerformanceSource source = 1;
CommonPerformanceDisplay display = 2;
}
//-------------------------------------------------------------------------------------
// tile/scomperf-as-bar
message ScomPerfAsBarTileConfig {
CommonPerformanceSource source = 1;
CommonPerformanceDisplay display = 2;
ScomPerfAsBarTileConfig_Context context = 3;
}
message ScomPerfAsBarTileConfig_Context {
CommonScope scope = 1;
}
//-------------------------------------------------------------------------------------
// tile/scomperf-as-heatmap
message ScomPerfAsHeatmapTileConfig {
ScomPerfAsHeatmapTileConfig_Context context = 1;
CommonPerformanceSource source = 2;
ScomPerfAsHeatmapTileConfig_Display display = 3;
}
message ScomPerfAsHeatmapTileConfig_Context {
CommonScope scope = 1;
}
message ScomPerfAsHeatmapTileConfig_Display {
double size_scale = 1;
uint32 red = 2;
uint32 green = 3;
uint32 blue = 4;
uint32 alpha = 5;
// e.g. properties.isVirtualNode
string size_property = 6;
double height = 7;
// e.g. 'column'
string zoom = 8;
}
//-------------------------------------------------------------------------------------
// tile/scomperf-as-line-graph
message ScomPerfAsLineGraphTileConfig {
ScomPerfAsLineGraphTileConfig_Context context = 1;
CommonPerformanceSource source = 2;
CommonPerformanceDisplay display = 3;
}
message ScomPerfAsLineGraphTileConfig_Context {
CommonScope scope = 1;
}
//-------------------------------------------------------------------------------------
// tile/scomperf-as-line-graph-report
message ScomPerfAsLineGraphReportTileConfig {
CommonPerformanceSource source = 1;
CommonPerformanceDisplay display = 2;
}
//-------------------------------------------------------------------------------------
// tile/scomperf-as-spark-lines
message ScomPerfAsSparklinesTileConfig {
ScomPerfAsSparklinesTileConfig_Context context = 1;
CommonPerformanceSource source = 2;
CommonPerformanceDisplay display = 3;
}
message ScomPerfAsSparklinesTileConfig_Context {
CommonScope scope = 1;
}