2011-06-21 17:19:10 +08:00
|
|
|
var logParms = "view=request&request=log&task=query";
|
2017-07-08 00:15:09 +08:00
|
|
|
var logReq = new Request.JSON( { url: thisUrl, method: 'post', timeout: AJAX_TIMEOUT, link: 'cancel', onSuccess: logResponse } );
|
2011-06-21 17:19:10 +08:00
|
|
|
var logTimer = undefined;
|
|
|
|
var logTable = undefined;
|
|
|
|
|
|
|
|
var logCodes = new Object({
|
|
|
|
'0': 'INF',
|
|
|
|
'-1': 'WAR',
|
|
|
|
'-2': 'ERR',
|
|
|
|
'-3': 'FAT',
|
|
|
|
'-4': 'PNC',
|
|
|
|
});
|
|
|
|
|
2017-07-06 23:42:35 +08:00
|
|
|
var minSampleTime = 2000;
|
2011-06-21 17:19:10 +08:00
|
|
|
var maxSampleTime = 16000;
|
|
|
|
var minLogTime = 0;
|
|
|
|
var maxLogTime = 0;
|
|
|
|
var logCount = 0;
|
|
|
|
var maxLogFetch = 100;
|
|
|
|
var filter = {};
|
|
|
|
var logTimeout = maxSampleTime;
|
|
|
|
var firstLoad = true;
|
|
|
|
var initialDisplayLimit = 200;
|
|
|
|
var sortReversed = false;
|
2017-03-18 15:00:51 +08:00
|
|
|
var filterFields = ['Component', 'ServerId', 'Pid', 'Level', 'File', 'Line'];
|
2011-06-21 17:19:10 +08:00
|
|
|
var options = {};
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function buildFetchParms( parms ) {
|
|
|
|
var fetchParms = logParms+'&limit='+maxLogFetch;
|
|
|
|
if ( parms )
|
|
|
|
fetchParms += '&'+parms;
|
|
|
|
Object.each(filter,
|
|
|
|
function( value, key ) {
|
|
|
|
fetchParms += '&filter['+key+']='+value;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
return( fetchParms );
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function fetchNextLogs() {
|
|
|
|
logReq.send( buildFetchParms( 'minTime='+maxLogTime ) );
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function fetchPrevLogs() {
|
|
|
|
logReq.send( buildFetchParms( 'maxTime='+minLogTime ) );
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function logResponse( respObj ) {
|
|
|
|
if ( logTimer )
|
|
|
|
logTimer = clearTimeout( logTimer );
|
2011-06-21 17:19:10 +08:00
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
if ( respObj.result == 'Ok' ) {
|
|
|
|
if ( respObj.logs.length > 0 ) {
|
|
|
|
logTimeout = minSampleTime;
|
|
|
|
logCount += respObj.logs.length;
|
|
|
|
try {
|
|
|
|
respObj.logs.each(
|
|
|
|
function( log ) {
|
2017-07-06 23:42:35 +08:00
|
|
|
if ( ( !maxLogTime ) || ( log.TimeKey > maxLogTime ) )
|
2017-05-19 01:50:56 +08:00
|
|
|
maxLogTime = log.TimeKey;
|
2017-07-06 23:42:35 +08:00
|
|
|
if ( ( !minLogTime ) || ( log.TimeKey < minLogTime ) )
|
2017-05-19 01:50:56 +08:00
|
|
|
minLogTime = log.TimeKey;
|
|
|
|
var row = logTable.push( [{ content: log.DateTime, properties: { style: 'white-space: nowrap' }}, log.Component, log.Server, log.Pid, log.Code, log.Message, log.File, log.Line] );
|
2017-07-06 23:42:35 +08:00
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
delete log.Message;
|
|
|
|
row.tr.store( 'log', log );
|
|
|
|
if ( log.Level <= -3 )
|
|
|
|
row.tr.addClass( 'log-fat' );
|
|
|
|
else if ( log.Level <= -2 )
|
|
|
|
row.tr.addClass( 'log-err' );
|
|
|
|
else if ( log.Level <= -1 )
|
|
|
|
row.tr.addClass( 'log-war' );
|
|
|
|
else if ( log.Level > 0 )
|
|
|
|
row.tr.addClass( 'log-dbg' );
|
|
|
|
if ( !firstLoad ) {
|
|
|
|
var color = document.defaultView.getComputedStyle(row.tr, null).getPropertyValue('color');
|
|
|
|
var colorParts = color.match(/^rgb.*\((\d+),\s*(\d+),\s*(\d+)/);
|
|
|
|
rowOrigColor = '#' + parseInt(colorParts[1]).toString(16) + parseInt(colorParts[2]).toString(16) + parseInt(colorParts[3]).toString(16);
|
2017-06-16 01:02:54 +08:00
|
|
|
//new Fx.Tween( row.tr, { duration: 10000, transition: Fx.Transitions.Sine } ).start( 'color', '#6495ED', rowOrigColor );
|
2017-05-19 01:50:56 +08:00
|
|
|
}
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
2017-05-19 01:50:56 +08:00
|
|
|
);
|
|
|
|
options = respObj.options;
|
|
|
|
updateFilterSelectors();
|
|
|
|
$('lastUpdate').set('text', respObj.updated);
|
|
|
|
$('logState').set('text', respObj.state);
|
|
|
|
$('logState').removeClass('ok');
|
|
|
|
$('logState').removeClass('alert');
|
|
|
|
$('logState').removeClass('alarm');
|
|
|
|
$('logState').addClass(respObj.state);
|
|
|
|
$('totalLogs').set('text', respObj.total);
|
|
|
|
$('availLogs').set('text', respObj.available);
|
|
|
|
$('displayLogs').set('text', logCount);
|
|
|
|
if ( firstLoad ) {
|
|
|
|
if ( logCount < displayLimit )
|
|
|
|
fetchPrevLogs();
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
2017-05-19 01:50:56 +08:00
|
|
|
logTable.reSort();
|
|
|
|
} catch( e ) {
|
|
|
|
console.error( e );
|
|
|
|
}
|
|
|
|
logTimeout /= 2;
|
|
|
|
if ( logTimeout < minSampleTime )
|
|
|
|
logTimeout = minSampleTime;
|
|
|
|
} else {
|
|
|
|
firstLoad = false;
|
|
|
|
logTimeout *= 2;
|
|
|
|
if ( logTimeout > maxSampleTime )
|
|
|
|
logTimeout = maxSampleTime;
|
2017-07-06 23:42:35 +08:00
|
|
|
} // end logs.length > 0
|
|
|
|
} // end if result == Ok
|
2017-05-19 01:50:56 +08:00
|
|
|
logTimer = fetchNextLogs.delay( logTimeout );
|
2017-03-18 15:00:51 +08:00
|
|
|
}
|
2011-06-21 17:19:10 +08:00
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function refreshLog() {
|
|
|
|
options = {};
|
|
|
|
logTable.empty();
|
|
|
|
firstLoad = true;
|
|
|
|
maxLogTime = 0;
|
|
|
|
minLogTime = 0;
|
|
|
|
logCount = 0;
|
|
|
|
logTimeout = maxSampleTime;
|
|
|
|
displayLimit = initialDisplayLimit;
|
|
|
|
fetchNextLogs();
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function expandLog() {
|
|
|
|
displayLimit += maxLogFetch;
|
|
|
|
fetchPrevLogs();
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function clearLog() {
|
|
|
|
logReq.cancel();
|
|
|
|
minLogTime = 0;
|
|
|
|
logCount = 0;
|
|
|
|
logTimeout = maxSampleTime;
|
|
|
|
displayLimit = initialDisplayLimit;
|
|
|
|
$('displayLogs').set('text', logCount);
|
|
|
|
options = {};
|
|
|
|
logTable.empty();
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function filterLog() {
|
|
|
|
filter = {};
|
|
|
|
filterFields.each(
|
|
|
|
function( field ) {
|
|
|
|
var selector = $('filter['+field+']');
|
|
|
|
if ( ! selector ) {
|
|
|
|
if ( window.console && window.console.log ) {
|
|
|
|
window.console.log("No selector found for " + field );
|
|
|
|
}
|
|
|
|
return;
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
2017-05-19 01:50:56 +08:00
|
|
|
var value = selector.get('value');
|
|
|
|
if ( value )
|
|
|
|
filter[field] = value;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
refreshLog();
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function resetLog() {
|
|
|
|
filter = {};
|
|
|
|
refreshLog();
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var exportFormValidator;
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function exportLog() {
|
|
|
|
exportFormValidator.reset();
|
|
|
|
$('exportLog').overlayShow();
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function exportResponse( response ) {
|
|
|
|
$('exportLog').unspin();
|
|
|
|
if ( response.result == 'Ok' ) {
|
|
|
|
window.location.replace( thisUrl+'?view=request&request=log&task=download&key='+response.key+'&format='+response.format );
|
|
|
|
}
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function exportFail( request ) {
|
|
|
|
$('exportLog').unspin();
|
|
|
|
$('exportErrorText').set('text', request.status+" / "+request.statusText );
|
|
|
|
$('exportError').show();
|
|
|
|
Error( "Export request failed: "+request.status+" / "+request.statusText );
|
2011-06-24 06:33:07 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function exportRequest() {
|
|
|
|
var form = $('exportForm');
|
|
|
|
$('exportErrorText').set('text', "" );
|
|
|
|
$('exportError').hide();
|
|
|
|
if ( form.validate() ) {
|
|
|
|
var exportParms = "view=request&request=log&task=export";
|
|
|
|
var exportReq = new Request.JSON( { url: thisUrl, method: 'post', link: 'cancel', onSuccess: exportResponse, onFailure: exportFail } );
|
|
|
|
var selection = form.getElement('input[name=selector]:checked').get('value');
|
|
|
|
if ( selection == 'filter' || selection == 'current' ) {
|
|
|
|
$$('#filters select').each(
|
|
|
|
function( select ) {
|
|
|
|
exportParms += "&"+select.get('id')+"="+select.get('value');
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ( selection == 'current' ) {
|
|
|
|
var tbody = $(logTable).getElement( 'tbody' );
|
|
|
|
var rows = tbody.getElements( 'tr' );
|
|
|
|
if ( rows ) {
|
|
|
|
var minTime = rows[0].getElement('td').get('text');
|
|
|
|
exportParms += "&minTime="+encodeURIComponent(minTime);
|
|
|
|
var maxTime = rows[rows.length-1].getElement('td').get('text');
|
|
|
|
exportParms += "&maxTime="+encodeURIComponent(maxTime);
|
|
|
|
}
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
2017-05-19 01:50:56 +08:00
|
|
|
exportReq.send( exportParms+"&"+form.toQueryString() );
|
|
|
|
$('exportLog').spin();
|
|
|
|
}
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function updateFilterSelectors() {
|
|
|
|
Object.each(options,
|
|
|
|
function( values, key ) {
|
|
|
|
var selector = $('filter['+key+']');
|
|
|
|
if ( ! selector ) {
|
|
|
|
if ( window.console && window.console.log ) {
|
|
|
|
window.console.log("No selector found for " + key );
|
2017-03-18 15:00:51 +08:00
|
|
|
}
|
2017-05-19 01:50:56 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
selector.options.length = 1;
|
|
|
|
if ( key == 'Level' ) {
|
|
|
|
Object.each(values,
|
|
|
|
function( value, label ) {
|
|
|
|
selector.options[selector.options.length] = new Option( value, label );
|
|
|
|
}
|
|
|
|
);
|
|
|
|
} else if ( key == 'ServerId' ) {
|
|
|
|
Object.each(values,
|
|
|
|
function( value, label ) {
|
|
|
|
selector.options[selector.options.length] = new Option( value, label );
|
|
|
|
}
|
2016-01-02 06:10:37 +08:00
|
|
|
);
|
2017-05-19 01:50:56 +08:00
|
|
|
} else {
|
|
|
|
values.each(
|
|
|
|
function( value ) {
|
|
|
|
selector.options[selector.options.length] = new Option( value );
|
|
|
|
}
|
2011-06-21 17:19:10 +08:00
|
|
|
);
|
2017-05-19 01:50:56 +08:00
|
|
|
}
|
|
|
|
if ( filter[key] )
|
|
|
|
selector.set('value', filter[key]);
|
|
|
|
}
|
|
|
|
);
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function initPage() {
|
|
|
|
displayLimit = initialDisplayLimit;
|
|
|
|
for ( var i = 1; i <= 9; i++ )
|
|
|
|
logCodes[''+i] = 'DB'+i;
|
|
|
|
logTable = new HtmlTable( $('logTable'),
|
|
|
|
{
|
|
|
|
zebra: true,
|
|
|
|
sortable: true,
|
|
|
|
sortReverse: true
|
|
|
|
}
|
|
|
|
);
|
|
|
|
logTable.addEvent( 'sort', function( tbody, index ) {
|
|
|
|
var header = tbody.getParent( 'table' ).getElement( 'thead' );
|
|
|
|
var columns = header.getElement( 'tr' ).getElements( 'th' );
|
|
|
|
var column = columns[index];
|
|
|
|
sortReversed = column.hasClass( 'table-th-sort-rev' );
|
|
|
|
if ( logCount > displayLimit ) {
|
|
|
|
var rows = tbody.getElements( 'tr' );
|
|
|
|
var startIndex;
|
|
|
|
if ( sortReversed )
|
|
|
|
startIndex = displayLimit;
|
|
|
|
else
|
|
|
|
startIndex = 0;
|
|
|
|
for ( var i = startIndex; logCount > displayLimit; i++ ) {
|
|
|
|
rows[i].destroy();
|
|
|
|
logCount--;
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
2017-05-19 01:50:56 +08:00
|
|
|
$('displayLogs').set('text', logCount);
|
|
|
|
} // end if loCount > displayLimit
|
|
|
|
}
|
|
|
|
);
|
|
|
|
exportFormValidator = new Form.Validator.Inline($('exportForm'), {
|
|
|
|
useTitles: true,
|
|
|
|
warningPrefix: "",
|
|
|
|
errorPrefix: ""
|
|
|
|
});
|
|
|
|
new Asset.css( "/css/spinner.css" );
|
|
|
|
fetchNextLogs();
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Kick everything off
|
|
|
|
window.addEvent( 'domready', initPage );
|