|
|
// Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
|
|
|
//
|
|
|
// Licensed 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.
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
/* Controllers */
|
|
|
|
|
|
angular.module('appenlight.components.reportsSlowBrowserView', [])
|
|
|
.component('reportsSlowBrowserView', {
|
|
|
templateUrl: 'components/views/reports-slow-browser-view/reports-slow-browser-view.html',
|
|
|
controller: ReportsSlowBrowserViewController
|
|
|
});
|
|
|
|
|
|
ReportsSlowBrowserViewController.$inject = ['$location', '$cookies',
|
|
|
'stateHolder', 'typeAheadTagHelper', 'slowReportsResource']
|
|
|
|
|
|
function ReportsSlowBrowserViewController($location, $cookies, stateHolder, typeAheadTagHelper, slowReportsResource) {
|
|
|
var vm = this;
|
|
|
vm.applications = stateHolder.AeUser.applications_map;
|
|
|
stateHolder.section = 'slow_reports';
|
|
|
vm.today = function () {
|
|
|
vm.pickerDate = new Date();
|
|
|
};
|
|
|
vm.today();
|
|
|
vm.reportsPage = [];
|
|
|
vm.page = 1;
|
|
|
vm.itemCount = 0;
|
|
|
vm.itemsPerPage = 250;
|
|
|
typeAheadTagHelper.tags = [];
|
|
|
vm.searchParams = {tags: [], page: 1, type: 'slow_report'};
|
|
|
vm.is_loading = false;
|
|
|
vm.filterTypeAheadOptions = [
|
|
|
{
|
|
|
type: 'view_name',
|
|
|
text: 'view_name:',
|
|
|
'description': 'Query reports occured in specific views',
|
|
|
tag: 'View Name',
|
|
|
example: "view_name:module.foo"
|
|
|
},
|
|
|
{
|
|
|
type: 'resource',
|
|
|
text: 'resource:',
|
|
|
'description': 'Restrict resultset to application',
|
|
|
tag: 'Application',
|
|
|
example: "resource:ID"
|
|
|
},
|
|
|
{
|
|
|
type: 'priority',
|
|
|
text: 'priority:',
|
|
|
'description': 'Show reports with specific priority',
|
|
|
example: 'priority:8',
|
|
|
tag: 'Priority'
|
|
|
},
|
|
|
{
|
|
|
type: 'min_occurences',
|
|
|
text: 'min_occurences:',
|
|
|
'description': 'Show reports from groups with at least X occurences',
|
|
|
example: 'min_occurences:25',
|
|
|
tag: 'Min. occurences'
|
|
|
},
|
|
|
{
|
|
|
type: 'min_duration',
|
|
|
text: 'min_duration:',
|
|
|
'description': 'Show reports from groups with average duration >= Xs',
|
|
|
example: 'min_duration:4.5',
|
|
|
tag: 'Min. duration'
|
|
|
},
|
|
|
{
|
|
|
type: 'url_path',
|
|
|
text: 'url_path:',
|
|
|
'description': 'Show reports from specific URL paths',
|
|
|
example: 'url_path:/foo/bar/baz',
|
|
|
tag: 'Url Path'
|
|
|
},
|
|
|
{
|
|
|
type: 'url_domain',
|
|
|
text: 'url_domain:',
|
|
|
'description': 'Show reports from specific domain',
|
|
|
example: 'url_domain:domain.com',
|
|
|
tag: 'Domain'
|
|
|
},
|
|
|
{
|
|
|
type: 'request_id',
|
|
|
text: 'request_id:',
|
|
|
'description': 'Show reports with specific request id',
|
|
|
example: "request_id:883143dc572e4c38aceae92af0ea5ae0",
|
|
|
tag: 'Request ID'
|
|
|
},
|
|
|
{
|
|
|
type: 'report_status',
|
|
|
text: 'report_status:',
|
|
|
'description': 'Show reports from groups with specific status',
|
|
|
example: 'report_status:never_reviewed',
|
|
|
tag: 'Status'
|
|
|
},
|
|
|
{
|
|
|
type: 'server_name',
|
|
|
text: 'server_name:',
|
|
|
'description': 'Show reports tagged with this key/value pair',
|
|
|
example: 'server_name:hostname',
|
|
|
tag: 'Tag'
|
|
|
},
|
|
|
{
|
|
|
type: 'start_date',
|
|
|
text: 'start_date:',
|
|
|
'description': 'Show reports newer than this date (press TAB for dropdown)',
|
|
|
example: 'start_date:2014-08-15T13:00',
|
|
|
tag: 'Start Date'
|
|
|
},
|
|
|
{
|
|
|
type: 'end_date',
|
|
|
text: 'end_date:',
|
|
|
'description': 'Show reports older than this date (press TAB for dropdown)',
|
|
|
example: 'start_date:2014-08-15T23:59',
|
|
|
tag: 'End Date'
|
|
|
}
|
|
|
];
|
|
|
|
|
|
vm.filterTypeAhead = undefined;
|
|
|
vm.showDatePicker = false;
|
|
|
vm.aheadFilter = typeAheadTagHelper.aheadFilter;
|
|
|
vm.removeSearchTag = function (tag) {
|
|
|
$location.search(tag.type, null);
|
|
|
vm.refresh();
|
|
|
};
|
|
|
vm.addSearchTag = function (tag) {
|
|
|
$location.search(tag.type, tag.value);
|
|
|
vm.refresh();
|
|
|
};
|
|
|
vm.manualOpen = false;
|
|
|
vm.notRelativeTime = false;
|
|
|
if ($cookies.notRelativeTime) {
|
|
|
vm.notRelativeTime = JSON.parse($cookies.notRelativeTime);
|
|
|
}
|
|
|
|
|
|
|
|
|
vm.changeRelativeTime = function () {
|
|
|
$cookies.notRelativeTime = JSON.stringify(vm.notRelativeTime);
|
|
|
};
|
|
|
|
|
|
_.each(_.range(1, 11), function (priority) {
|
|
|
vm.filterTypeAheadOptions.push({
|
|
|
type: 'priority',
|
|
|
text: 'priority:' + priority.toString(),
|
|
|
description: 'Show entries with specific priority',
|
|
|
example: 'priority:' + priority,
|
|
|
tag: 'Priority'
|
|
|
});
|
|
|
});
|
|
|
_.each(['never_reviewed', 'reviewed', 'fixed', 'public'], function (status) {
|
|
|
vm.filterTypeAheadOptions.push({
|
|
|
type: 'report_status',
|
|
|
text: 'report_status:' + status,
|
|
|
'description': 'Show only reports with this status',
|
|
|
example: 'report_status:' + status,
|
|
|
tag: 'Status ' + status.toUpperCase()
|
|
|
});
|
|
|
});
|
|
|
_.each(stateHolder.AeUser.applications, function (item) {
|
|
|
vm.filterTypeAheadOptions.push({
|
|
|
type: 'resource',
|
|
|
text: 'resource:' + item.resource_id + ':' + item.resource_name,
|
|
|
example: 'resource:' + item.resource_id,
|
|
|
'tag': item.resource_name,
|
|
|
'description': 'Restrict resultset to this application'
|
|
|
});
|
|
|
});
|
|
|
|
|
|
vm.typeAheadTag = function (event) {
|
|
|
var text = vm.filterTypeAhead;
|
|
|
if (_.isObject(vm.filterTypeAhead)) {
|
|
|
text = vm.filterTypeAhead.text;
|
|
|
};
|
|
|
if (!vm.filterTypeAhead) {
|
|
|
return
|
|
|
}
|
|
|
var parsed = text.split(':');
|
|
|
var tag = {'type': null, 'value': null};
|
|
|
// app tags have : twice
|
|
|
if (parsed.length > 2 && parsed[0] == 'resource') {
|
|
|
tag.type = 'resource';
|
|
|
tag.value = parsed[1];
|
|
|
}
|
|
|
// normal tag:value
|
|
|
else if (parsed.length > 1) {
|
|
|
tag.type = parsed[0];
|
|
|
var tagValue = parsed.slice(1);
|
|
|
if (tagValue) {
|
|
|
tag.value = tagValue.join(':');
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// set datepicker hour based on type of field
|
|
|
if ('start_date:' == text) {
|
|
|
vm.showDatePicker = true;
|
|
|
vm.filterTypeAhead = 'start_date:' + moment(vm.pickerDate).utc().format();
|
|
|
}
|
|
|
else if ('end_date:' == text) {
|
|
|
vm.showDatePicker = true;
|
|
|
vm.filterTypeAhead = 'end_date:' + moment(vm.pickerDate).utc().hour(23).minute(59).format();
|
|
|
}
|
|
|
|
|
|
if (event.keyCode != 13 || !tag.type || !tag.value) {
|
|
|
return
|
|
|
}
|
|
|
vm.showDatePicker = false;
|
|
|
// aka we selected one of main options
|
|
|
vm.addSearchTag({type: tag.type, value: tag.value});
|
|
|
// clear typeahead
|
|
|
vm.filterTypeAhead = undefined;
|
|
|
};
|
|
|
|
|
|
vm.paginationChange = function(){
|
|
|
$location.search('page', vm.page);
|
|
|
vm.refresh();
|
|
|
};
|
|
|
|
|
|
vm.pickerDateChanged = function(){
|
|
|
if (vm.filterTypeAhead.indexOf('start_date:') == '0') {
|
|
|
vm.filterTypeAhead = 'start_date:' + moment(vm.pickerDate).utc().format();
|
|
|
}
|
|
|
else if (vm.filterTypeAhead.indexOf('end_date:') == '0') {
|
|
|
vm.filterTypeAhead = 'end_date:' + moment(vm.pickerDate).utc().hour(23).minute(59).format();
|
|
|
}
|
|
|
vm.showDatePicker = false;
|
|
|
};
|
|
|
|
|
|
var reportPresentation = function (report) {
|
|
|
report.presentation = {};
|
|
|
if (report.group.public) {
|
|
|
report.presentation.className = 'public';
|
|
|
report.presentation.tooltip = 'Public';
|
|
|
}
|
|
|
else if (report.group.fixed) {
|
|
|
report.presentation.className = 'fixed';
|
|
|
report.presentation.tooltip = 'Fixed';
|
|
|
}
|
|
|
else if (report.group.read) {
|
|
|
report.presentation.className = 'reviewed';
|
|
|
report.presentation.tooltip = 'Reviewed';
|
|
|
}
|
|
|
else {
|
|
|
report.presentation.className = 'new';
|
|
|
report.presentation.tooltip = 'New';
|
|
|
}
|
|
|
return report;
|
|
|
};
|
|
|
|
|
|
vm.fetchReports = function (searchParams) {
|
|
|
vm.is_loading = true;
|
|
|
slowReportsResource.query(searchParams, function (data, getResponseHeaders) {
|
|
|
var headers = getResponseHeaders();
|
|
|
console.log(headers);
|
|
|
vm.is_loading = false;
|
|
|
vm.reportsPage = _.map(data, function (item) {
|
|
|
return reportPresentation(item);
|
|
|
});
|
|
|
vm.itemCount = headers['x-total-count'];
|
|
|
vm.itemsPerPage = headers['x-items-per-page'];
|
|
|
}, function () {
|
|
|
vm.is_loading = false;
|
|
|
});
|
|
|
};
|
|
|
|
|
|
vm.filterId = function (log) {
|
|
|
vm.searchParams.tags.push({
|
|
|
type: "request_id",
|
|
|
value: log.request_id
|
|
|
});
|
|
|
vm.refresh();
|
|
|
};
|
|
|
vm.refresh = function(){
|
|
|
vm.searchParams = parseSearchToTags($location.search());
|
|
|
vm.page = Number(vm.searchParams.page) || 1;
|
|
|
var params = parseTagsToSearch(vm.searchParams);
|
|
|
vm.fetchReports(params);
|
|
|
};
|
|
|
|
|
|
//initial load
|
|
|
vm.refresh();
|
|
|
}
|
|
|
|