forked from loadavg/loadavg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapache.js
269 lines (207 loc) · 6.59 KB
/
apache.js
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
if (typeof charts == "undefined") {
var charts = {};
}
charts.apache_usage =
{
// will hold the chart object
plot: null,
// chart data
$data: null,
//global - we can change this when rendering different views
chartBarWidth: 1*1*1000,
// chart options
options:
{
grid: {
show: true,
aboveData: true,
color: "#3f3f3f",
labelMargin: 5,
axisMargin: 0,
borderWidth: 1,
borderColor: null,
minBorderMargin: 5 ,
clickable: true,
hoverable: true,
autoHighlight: true,
mouseActiveRadius: 20,
backgroundColor : { }
},
series: {
grow: {active:false},
lines: {
show: true,
fill: true,
lineWidth: false,
steps: false
},
points: {show:false}
},
legend: { position: "ne", backgroundColor: "#000", backgroundOpacity: .4 },
yaxis: {
labelWidth: 40,
tickDecimals:1,
tickFormatter: function(val,axis){
return parseFloat(val).toFixed(axis.tickDecimals);
},
font: { size:10, color: "grey", variant:"small-caps" },
ticks:4
},
xaxis: {mode: 'time',
font: { size:10, color: "grey", variant:"small-caps" },
timezone: null, minTickSize: ["5", "minute"], timeformat: "%H", min: today_min, max: today_max,
ticks: 12,
tickFormatter: function(v,axis){
var date = new Date(v);
if (date.getSeconds() % 20 == 0) {
var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
//return hours + ":" + minutes + ":" + seconds;
if ( hours == "00" || hours == "12") {
return "<span style='color: #bbb'>" + hours + "</span>";
} else {
return "<span style='color: grey'>" + hours + "</span>";
}
} else {
return "";
}
}
},
colors: [],
shadowSize:1,
tooltip: true,
tooltipOpts: {
content: function(label, xval, yval, flotItem) {
var itemTime = new Date(xval);
itemTime = this.getItemTime(itemTime);
return "CPU Usage : " + parseFloat(yval).toFixed(2) + " / " + itemTime ;
},
shifts: {
x: 10,
y: -20
},
dateFormat: "%y-%0m-%0d",
defaultTheme: false
}
},
setData: function($data,$info)
{
this.$data = $data;
this.options.yaxis.min = $info.ymin;
this.options.yaxis.max = $info.ymax;
this.chartwidth = $info.chartwidth;
this.chartheight = $info.chartheight;
//set timezone
this.setTimeZone($info.timezonemode,$info.timezone);
},
setTimeZone: function ($mode,$zone){
if ( $mode == "Browser")
$newmode = "browser";
else if ($mode == "UTC")
$newmode = "UTC";
else if ($mode == "Override")
$newmode = $zone;
this.options.xaxis.timezone = $newmode;
},
//dirty hack to override label for missing logs
setLabel: function($data)
{
this.label = $data;
},
//used to override date ranges needs cleaning up
setRange: function($xmin,$xmax,$ticks)
{
this.options.xaxis.min = $xmin;
this.options.xaxis.max = $xmax;
this.options.xaxis.ticks = $ticks;
//set the chart bar widthh
this.setChartBarWidth($ticks);
//console.log( $ticks, "setRange in CPU");
},
//used to override date ranges needs cleaning up
setChartBarWidth: function($data)
{
//set the chart bar width
switch ($data) {
case 12 : //optimal for 24 hour view (6 tics )
this.chartBarWidth = 1*1*1000;
break;
case 6 : //optimal for 12 hour view (6 tics )
this.chartBarWidth = 60*1*1000;
break;
case 3 : //optimal for 6 hour view (3 ticks)
this.chartBarWidth = 60*3*1000;
break;
};
},
//generate chart datasets and visual styles here
genChart: function($chartdata)
{
//dirty hack we will store this soon
var myTicks = this.options.xaxis.ticks;
if (this.$data[0]) {
if ( myTicks == 12 ) {
$chartdata[0] = [ { label: this.$data[0].label, data: this.$data[0].data,
lines: {show:true, fillColor: "#8ec657"},
points: {fillColor: "#88bbc8"},
color:"#8ec657"
} ];
} else {
$chartdata[0] = [ { label: this.$data[0].label, data: this.$data[0].data,
lines: {show: false},
//bars: { show: true, barWidth: .9, align: "center", fill: 1, fillColor: "#8ec657"},
bars: { show: true, barWidth: this.chartBarWidth, align: "center", fill: 1, fillColor: "#8ec657"},
color: "#8ec657"
} ];
}
};
//secondary YELLOW overload
if (this.$data[1]) {
$chartdata[1] = [ { label: this.$data[1].label, data: this.$data[1].data,
lines: {show: false},
bars: { show: true, barWidth: this.chartBarWidth, align: "center", fill: 1, fillColor: "#ebc824" },
color: "#ebc824"
} ];
};
},
// initialize
init: function($divId)
{
// apply styling
this.utility.applyStyle(this);
this.options.legend.container = "#"+$divId+"_legend";
this.options.legend.noColumns = 3;
var chartWidth = this.chartwidth;
if (chartWidth == 0 || !chartWidth)
chartWidth = 530;
var p = $('#' + $divId);
p.width( chartWidth );
//generate chart datasets
var chartDataset = [];
this.genChart(chartDataset);
//if its not an array then there is no chart data to draw
if ($.isArray(this.$data))
{
if (this.$data[0] && this.$data[1]) {
this.plot = $.plot('#' + $divId, chartDataset[0].concat(chartDataset[1] ), this.options);
//console.log( 'apache level 2' );
} else if (this.$data[0]) {
this.plot = $.plot('#' + $divId, chartDataset[0], this.options);
//console.log( 'apache level 1' );
}
};
},
utility:
{
chartColors: [ "#797979", "#444", "#777", "#999", "#797979", "#EEE" ],
chartBackgroundColors: ["#353535", "#353535"],
applyStyle: function(that)
{
that.options.colors = that.utility.chartColors;
that.options.grid.backgroundColor = { colors: that.utility.chartBackgroundColors };
that.options.grid.borderColor = that.utility.chartColors[4];
that.options.grid.color = that.utility.chartColors[5];
}
}
}