blob: 76e5bf58d01672cec427f82f7e3dd1ebff8f1998 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* Functions fro charting top url table.
*/
function DrawServer404TableChart()
{
try
{
var connect = new XMLHttpRequest();
connect.onreadystatechange = function() {
if(connect.readyState==4 && connect.status==200) {
var data = connect.response;
var pts = JSON.parse(data);
var server404 = new google.visualization.DataTable();
server404.addColumn('string', 'SERVER');
server404.addColumn('number', '404/sec');
server404.addRows(10);
for(var i=0; ((i < pts.length)&&(i < 10)); i++)
{
var row = pts[i].split("##");
if ((row[0] == null)||(row[0] == ""))
{
server404.setCell(i, 0, "-");
} else {
server404.setCell(i, 0, row[0]);
}
if ((row[1] == null)||(row[1] == ""))
{
server404.setCell(i, 1, 0);
} else {
server404.setCell(i, 1, parseInt(row[1]));
}
}
//document.getElementById('risky_client_div').innerHTML = data;
//document.getElementById('risky_client_div').innerHTML = server404.getNumberOfRows();
server404TableChart.draw(server404, {showRowNumber: true});
delete server404;
delete data;
delete pts;
}
}
connect.open('GET', "Server404.php", true);
connect.send(null);
} catch(e) {
}
}