Project

General

Profile

Download (7.21 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/*
3
	$Id$
4
	part of m0n0wall (http://m0n0.ch/wall)
5
	
6
	Copyright (C) 2004-2005 T. Lechat <dev@lechat.org>, Manuel Kasper <mk@neon1.net>
7
	and Jonathan Watt <jwatt@jwatt.org>.
8
	All rights reserved.
9
	
10
	Redistribution and use in source and binary forms, with or without
11
	modification, are permitted provided that the following conditions are met:
12
	
13
	1. Redistributions of source code must retain the above copyright notice,
14
	   this list of conditions and the following disclaimer.
15
	
16
	2. Redistributions in binary form must reproduce the above copyright
17
	   notice, this list of conditions and the following disclaimer in the
18
	   documentation and/or other materials provided with the distribution.
19
	
20
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
21
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
22
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
24
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
	POSSIBILITY OF SUCH DAMAGE.
30
*/
31

    
32
header("Content-type: image/svg+xml");
33

    
34
/********* Other conf *******/
35

    
36
$nb_plot = 120;  // maximum number of data points to plot in the graph
37
$fetch_link = "stats.php?stats=cpu";
38

    
39
//SVG attributes
40
$attribs['axis']='fill="black" stroke="black"';
41
$attribs['cpu']='fill="#FF0000" font-family="Tahoma, Verdana, Arial, Helvetica, sans-serif" font-size="7"';
42
$attribs['graph_cpu']='fill="none" stroke="#FF0000" stroke-opacity="0.8"';
43
$attribs['legend']='fill="black" font-family="Tahoma, Verdana, Arial, Helvetica, sans-serif" font-size="4"';
44
$attribs['grid_txt']='fill="gray" font-family="Tahoma, Verdana, Arial, Helvetica, sans-serif" font-size="6"';
45
$attribs['grid']='stroke="gray" stroke-opacity="0.5"';
46
$attribs['error']='fill="blue" font-family="Arial" font-size="4"';
47
$attribs['collect_initial']='fill="gray" font-family="Tahoma, Verdana, Arial, Helvetica, sans-serif" font-size="4"';
48

    
49
$height=100;  // SVG internal height : do not modify
50
$width=200;   // SVG internal width  : do not modify
51

    
52
/********* Graph DATA **************/
53
print('<?xml version="1.0" encoding="iso-8859-1"?>' . "\n");?>
54
<svg width="100%" height="100%" viewBox="0 0 <?=$width?> <?=$height?>" preserveAspectRatio="none" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onload="init(evt);">
55
  <g id="graph">
56
    <rect id="bg" x1="0" y1="0" width="100%" height="100%" fill="white"/>
57
    <line id="axis_x" x1="0" y1="0" x2="0" y2="100%" <?=$attribs['axis']?>/>
58
    <line id="axis_y" x1="0" y1="100%" x2="100%" y2="100%" <?=$attribs['axis']?>/>
59
    <polygon id="axis_arrow_x" <?=$attribs['axis']?> points="<?=($width) . "," . ($height)?> <?=($width-2) . "," . ($height-2)?> <?=($width-2) . "," . $height?>"/>
60
    <path id="graph_cpu" d="" <?=$attribs['graph_cpu']?>/>
61
    <path id="grid" d="M0 <?=$height/4*1?> L <?=$width?> <?=$height/4*1?> M0 <?=$height/4*2?> L <?=$width?> <?=$height/4*2?> M0 <?=$height/4*3?> L <?=$width?> <?=$height/4*3?>" <?=$attribs['grid']?>/>
62
    <text id="grid_txt1" x="100%" y="25%" <?=$attribs['grid_txt']?> text-anchor="end">75%</text>
63
    <text id="grid_txt2" x="100%" y="50%" <?=$attribs['grid_txt']?> text-anchor="end">50%</text>
64
    <text id="grid_txt3" x="100%" y="75%" <?=$attribs['grid_txt']?> text-anchor="end">25%</text>
65
    <text id="graph_cpu_txt" x="4" y="8" <?=$attribs['cpu']?>> </text>
66
    <text id="error" x="50%" y="50%"  visibility="hidden" <?=$attribs['error']?> text-anchor="middle">Cannot get CPU load</text>
67
    <text id="collect_initial" x="50%" y="50%"  visibility="hidden" <?=$attribs['collect_initial']?> text-anchor="middle">Collecting initial data, please wait...</text>
68
  </g>
69
  <script type="text/ecmascript">
70
    <![CDATA[
71

    
72
/**
73
 * getURL is a proprietary Adobe function, but it's simplicity has made it very
74
 * popular. If getURL is undefined we spin our own by wrapping XMLHttpRequest.
75
 */
76
if (typeof getURL == 'undefined') {
77
  getURL = function(url, callback) {
78
    if (!url)
79
      throw 'No URL for getURL';
80

    
81
    try {
82
      if (typeof callback.operationComplete == 'function')
83
        callback = callback.operationComplete;
84
    } catch (e) {}
85
    if (typeof callback != 'function')
86
      throw 'No callback function for getURL';
87

    
88
    var http_request = null;
89
    if (typeof XMLHttpRequest != 'undefined') {
90
      http_request = new XMLHttpRequest();
91
    }
92
    else if (typeof ActiveXObject != 'undefined') {
93
      try {
94
        http_request = new ActiveXObject('Msxml2.XMLHTTP');
95
      } catch (e) {
96
        try {
97
          http_request = new ActiveXObject('Microsoft.XMLHTTP');
98
        } catch (e) {}
99
      }
100
    }
101
    if (!http_request)
102
      throw 'Both getURL and XMLHttpRequest are undefined';
103

    
104
    http_request.onreadystatechange = function() {
105
      if (http_request.readyState == 4) {
106
        callback( { success : true,
107
                    content : http_request.responseText,
108
                    contentType : http_request.getResponseHeader("Content-Type") } );
109
      }
110
    }
111
    http_request.open('GET', url, true);
112
    http_request.send(null);
113
  }
114
}
115

    
116
var SVGDoc = null;
117
var last_cpu_total = 0;
118
var last_cpu_idle = 0;
119
var diff_cpu_total = 0;
120
var diff_cpu_idle = 0;
121
var cpu_data = new Array();
122

    
123
var max_num_points = <?=$nb_plot?>;  // maximum number of plot data points
124
var step = <?=$width?> / max_num_points;  // plot X division size
125
var scale = <?=$height?> / 100;
126

    
127
function init(evt) {
128
  SVGDoc = evt.target.ownerDocument;
129
  fetch_data();
130
}
131

    
132
function fetch_data() {
133
  getURL('<?=$fetch_link?>', plot_cpu_data);
134
}
135

    
136
function plot_cpu_data(obj) {
137
  if (!obj.success)
138
    return handle_error();  // getURL failed to get current CPU load data
139

    
140
  var cpu = parseInt(obj.content);
141
  if (!isNumber(cpu))
142
    return handle_error();
143

    
144
  switch (cpu_data.length) {
145
  case 0:
146
    SVGDoc.getElementById("collect_initial").setAttributeNS(null, 'visibility', 'visible');
147
    cpu_data[0] = cpu;
148
    fetch_data();
149
    return;
150
  case 1:
151
    SVGDoc.getElementById("collect_initial").setAttributeNS(null, 'visibility', 'hidden');
152
    break;
153
  case max_num_points:
154
    // shift plot to left if the maximum number of plot points has been reached
155
    var i = 0;
156
    while (i < max_num_points) {
157
      cpu_data[i] = cpu_data[++i];
158
    }
159
    --cpu_data.length;
160
  }
161

    
162
  cpu_data[cpu_data.length] = cpu;
163

    
164
  var path_data = "M 0 " + (<?=$height?> - (cpu_data[0] * scale));
165
  for (var i = 1; i < cpu_data.length; ++i) {
166
    var x = step * i;
167
    var y_cpu = <?=$height?> - (cpu_data[i] * scale);
168
    path_data += " L" + x + " " + y_cpu;
169
  }
170

    
171
  SVGDoc.getElementById("error").setAttributeNS(null, 'visibility', 'hidden');
172
  SVGDoc.getElementById('graph_cpu_txt').firstChild.data = cpu + '%';
173
  SVGDoc.getElementById('graph_cpu').setAttributeNS(null, "d", path_data);
174

    
175
  fetch_data();
176
}
177

    
178
function handle_error() {
179
  SVGDoc.getElementById("error").setAttributeNS(null, 'visibility', 'visible');
180
  fetch_data();
181
}
182

    
183
function isNumber(a) {
184
  return typeof a == 'number' && isFinite(a);
185
}
186

    
187
    ]]>
188
  </script>
189
</svg>
(62-62/189)