mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-07 10:18:57 +00:00
152 lines
4.8 KiB
JavaScript
152 lines
4.8 KiB
JavaScript
// Require config
|
|
var app = require('ui/modules').get('app/wazuh', []);
|
|
|
|
app.controller('managerController', function ($scope, $route, $routeParams, $location) {
|
|
|
|
$scope.submenuNavItem = "status";
|
|
$scope.submenuNavItem2 = "rules";
|
|
|
|
if($routeParams.tab)
|
|
$scope.submenuNavItem = $routeParams.tab;
|
|
|
|
// Watchers
|
|
$scope.$watch('submenuNavItem', function() {
|
|
$location.search('tab', $scope.submenuNavItem);
|
|
});
|
|
|
|
$scope.setRulesTab = function(tab) {
|
|
$scope.submenuNavItem2 = tab;
|
|
};
|
|
|
|
});
|
|
|
|
|
|
app.controller('managerStatusController', function ($scope, DataFactory, genericReq, $mdDialog, $mdToast, errlog) {
|
|
//Initialization
|
|
$scope.load = true;
|
|
$scope.timeFilter = "24h";
|
|
|
|
$scope.stats = [];
|
|
$scope.stats['/top/agent'] = '-';
|
|
$scope.stats['/overview/alerts'] = { "alerts": 0, "ip": "-", "group": "-" };
|
|
$scope.stats['/overview/fim'] = { "alerts": 0, "agent": "-", "file": "-" };
|
|
|
|
//Print Error
|
|
var printError = function (error) {
|
|
$mdToast.show({
|
|
template: '<md-toast>' + error.html + '</md-toast>',
|
|
position: 'bottom left',
|
|
hideDelay: 5000,
|
|
});
|
|
};
|
|
|
|
//Functions
|
|
$scope.getDaemonStatusClass = function (daemonStatus) {
|
|
if (daemonStatus == "running")
|
|
return "status green"
|
|
else if (daemonStatus == "stopped")
|
|
return "status red";
|
|
else
|
|
return "status red";
|
|
};
|
|
|
|
|
|
var load = function () {
|
|
DataFactory.getAndClean('get', '/agents/summary', {})
|
|
.then(function (data) {
|
|
$scope.agentsCountActive = data.data.Active;
|
|
$scope.agentsCountDisconnected = data.data.Disconnected;
|
|
$scope.agentsCountNeverConnected = data.data['Never connected'];
|
|
$scope.agentsCountTotal = data.data.Total;
|
|
$scope.agentsCoverity = (data.data.Active / data.data.Total) * 100;
|
|
}, printError);
|
|
DataFactory.getAndClean('get', '/manager/status', {})
|
|
.then(function (data) {
|
|
$scope.daemons = data.data;
|
|
}, printError);
|
|
DataFactory.getAndClean('get', '/manager/info', {})
|
|
.then(function (data) {
|
|
$scope.managerInfo = data.data;
|
|
DataFactory.getAndClean('get', '/rules', { offset: 0, limit: 1 })
|
|
.then(function (data) {
|
|
$scope.totalRules = data.data.totalItems;
|
|
DataFactory.getAndClean('get', '/decoders', { offset: 0, limit: 1 })
|
|
.then(function (data) {
|
|
$scope.totalDecoders = data.data.totalItems;
|
|
$scope.load = false;
|
|
}, printError);
|
|
}, printError);
|
|
}, printError);
|
|
DataFactory.getAndClean('get', '/agents', { offset: 0, limit: 1, sort: '-id' })
|
|
.then(function (data) {
|
|
DataFactory.getAndClean('get', '/agents/' + data.data.items[0].id, {})
|
|
.then(function (data) {
|
|
$scope.agentInfo = data.data;
|
|
}, printError);
|
|
}, printError);
|
|
};
|
|
|
|
//Load
|
|
try {
|
|
load();
|
|
} catch (e) {
|
|
$mdToast.show({
|
|
template: '<md-toast> Unexpected exception loading controller </md-toast>',
|
|
position: 'bottom left',
|
|
hideDelay: 5000,
|
|
});
|
|
errlog.log('Unexpected exception loading controller', e);
|
|
}
|
|
|
|
//Destroy
|
|
$scope.$on("$destroy", function () {
|
|
$scope.stats.length = 0;
|
|
});
|
|
|
|
});
|
|
|
|
app.controller('managerConfigurationController', function ($scope, DataFactory, errlog) {
|
|
//Initialization
|
|
$scope.load = true;
|
|
$scope.isArray = angular.isArray;
|
|
|
|
//Print Error
|
|
var printError = function (error) {
|
|
$mdToast.show({
|
|
template: '<md-toast>' + error.html + '</md-toast>',
|
|
position: 'bottom left',
|
|
hideDelay: 5000,
|
|
});
|
|
};
|
|
|
|
//Functions
|
|
var load = function () {
|
|
DataFactory.getAndClean('get', '/manager/status', {})
|
|
.then(function (data) {
|
|
$scope.daemons = data.data;
|
|
DataFactory.getAndClean('get', '/manager/configuration', {})
|
|
.then(function (data) {
|
|
$scope.managerConfiguration = data.data;
|
|
$scope.load = false;
|
|
}, printError);
|
|
}, printError);
|
|
};
|
|
|
|
//Load
|
|
try {
|
|
load();
|
|
} catch (e) {
|
|
$mdToast.show({
|
|
template: '<md-toast> Unexpected exception loading controller </md-toast>',
|
|
position: 'bottom left',
|
|
hideDelay: 5000,
|
|
});
|
|
errlog.log('Unexpected exception loading controller', e);
|
|
}
|
|
|
|
//Destroy
|
|
$scope.$on("$destroy", function () {
|
|
$scope.managerConfiguration.length = 0;
|
|
});
|
|
|
|
}); |