/usr/share/zabbix/include/services.inc.php is in zabbix-frontend-php 1:2.4.7+dfsg-2ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 | <?php
/*
** Zabbix
** Copyright (C) 2001-2015 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
function serviceAlgorythm($algorythm = null) {
$algorythms = array(
SERVICE_ALGORITHM_MAX => _('Problem, if at least one child has a problem'),
SERVICE_ALGORITHM_MIN => _('Problem, if all children have problems'),
SERVICE_ALGORITHM_NONE => _('Do not calculate')
);
if ($algorythm === null) {
return $algorythms;
}
elseif (isset($algorythms[$algorythm])) {
return $algorythms[$algorythm];
}
else {
return false;
}
}
function get_service_childs($serviceid, $soft = 0) {
$childs = array();
$result = DBselect(
'SELECT sl.servicedownid'.
' FROM services_links sl'.
' WHERE sl.serviceupid='.zbx_dbstr($serviceid).
($soft ? '' : ' AND sl.soft=0')
);
while ($row = DBfetch($result)) {
$childs[] = $row['servicedownid'];
$childs = array_merge($childs, get_service_childs($row['servicedownid']));
}
return $childs;
}
/**
* Creates nodes that can be used to display the service configuration tree using the CTree class.
*
* @see CTree
*
* @param array $services
* @param array $parentService
* @param array $service
* @param array $dependency
* @param array $tree
*/
function createServiceConfigurationTree(array $services, &$tree, array $parentService = array(), array $service = array(), array $dependency = array()) {
if (!$service) {
$caption = new CLink(_('root'), '#');
$caption->setMenuPopup(CMenuPopupHelper::getServiceConfiguration(null, _('root'), false));
$serviceNode = array(
'id' => 0,
'parentid' => 0,
'caption' => $caption,
'trigger' => array(),
'algorithm' => SPACE,
'description' => SPACE
);
$service = $serviceNode;
$service['serviceid'] = 0;
$service['dependencies'] = array();
$service['trigger'] = array();
// add all top level services as children of "root"
foreach ($services as $topService) {
if (!$topService['parent']) {
$service['dependencies'][] = array(
'servicedownid' => $topService['serviceid'],
'soft' => 0,
'linkid' => 0
);
}
}
$tree = array($serviceNode);
}
else {
// caption
$caption = new CLink($service['name'], '#');
// service is deletable only if it has no hard dependency
$deletable = true;
foreach ($service['dependencies'] as $dep) {
if ($dep['soft'] == 0) {
$deletable = false;
break;
}
}
$caption->setMenuPopup(CMenuPopupHelper::getServiceConfiguration($service['serviceid'], $service['name'], $deletable));
$serviceNode = array(
'id' => $service['serviceid'],
'caption' => $caption,
'description' => $service['trigger'] ? $service['trigger']['description'] : '-',
'parentid' => $parentService ? $parentService['serviceid'] : 0,
'algorithm' => serviceAlgorythm($service['algorithm'])
);
}
if (!$dependency || !$dependency['soft']) {
$tree[$serviceNode['id']] = $serviceNode;
foreach ($service['dependencies'] as $dependency) {
$childService = $services[$dependency['servicedownid']];
createServiceConfigurationTree($services, $tree, $service, $childService, $dependency);
}
}
else {
$serviceNode['caption'] = new CSpan($serviceNode['caption'], 'service-caption-soft');
$tree[$serviceNode['id'].'.'.$dependency['linkid']] = $serviceNode;
}
}
/**
* Creates nodes that can be used to display the SLA report tree using the CTree class.
*
* @see CTree
*
* @param array $services an array of services to display in the tree
* @param array $slaData sla report data, see CService::getSla()
* @param $period
* @param array $parentService
* @param array $service
* @param array $dependency
* @param array $tree
*/
function createServiceMonitoringTree(array $services, array $slaData, $period, &$tree, array $parentService = array(), array $service = array(), array $dependency = array()) {
// if no parent service is given, start from the root
if (!$service) {
$serviceNode = array(
'id' => 0,
'parentid' => 0,
'caption' => _('root'),
'status' => SPACE,
'sla' => SPACE,
'sla2' => SPACE,
'trigger' => array(),
'reason' => SPACE,
'graph' => SPACE,
);
$service = $serviceNode;
$service['serviceid'] = 0;
$service['dependencies'] = array();
$service['trigger'] = array();
// add all top level services as children of "root"
foreach ($services as $topService) {
if (!$topService['parent']) {
$service['dependencies'][] = array(
'servicedownid' => $topService['serviceid'],
'soft' => 0,
'linkid' => 0
);
}
}
$tree = array($serviceNode);
}
// create a not from the given service
else {
$serviceSla = $slaData[$service['serviceid']];
$slaValues = reset($serviceSla['sla']);
// caption
// remember the selected time period when following the bar link
$periods = array(
'today' => 'daily',
'week' => 'weekly',
'month' => 'monthly',
'year' => 'yearly',
24 => 'daily',
24 * 7 => 'weekly',
24 * 30 => 'monthly',
24 * DAY_IN_YEAR => 'yearly'
);
$caption = array(new CLink(
$service['name'],
'report3.php?serviceid='.$service['serviceid'].'&year='.date('Y').'&period='.$periods[$period]
));
$trigger = $service['trigger'];
if ($trigger) {
$url = new CLink($trigger['description'],
'events.php?filter_set=1&source='.EVENT_SOURCE_TRIGGERS.'&triggerid='.$trigger['triggerid']
);
$caption[] = ' - ';
$caption[] = $url;
}
// reason
$problemList = '-';
if ($serviceSla['problems']) {
$problemList = new CList(null, 'service-problems');
foreach ($serviceSla['problems'] as $problemTrigger) {
$problemList->addItem(new CLink($problemTrigger['description'],
'events.php?filter_set=1&source='.EVENT_SOURCE_TRIGGERS.'&triggerid='.$problemTrigger['triggerid']
));
}
}
// sla
$sla = '-';
$sla2 = '-';
if ($service['showsla'] && $slaValues['sla'] !== null) {
$slaGood = $slaValues['sla'];
$slaBad = 100 - $slaValues['sla'];
$p = min($slaBad, 20);
$width = 160;
$widthRed = $width * $p / 20;
$widthGreen = $width - $widthRed;
$chart1 = null;
if ($widthGreen > 0) {
$chart1 = new CDiv(null, 'sla-bar-part sla-green');
$chart1->setAttribute('style', 'width: '.$widthGreen.'px;');
}
$chart2 = null;
if ($widthRed > 0) {
$chart2 = new CDiv(null, 'sla-bar-part sla-red');
$chart2->setAttribute('style', 'width: '.$widthRed.'px;');
}
$bar = new CLink(array(
$chart1,
$chart2,
new CDiv('80%', 'sla-bar-legend sla-bar-legend-start'),
new CDiv('100%', 'sla-bar-legend sla-bar-legend-end')
), 'srv_status.php?serviceid='.$service['serviceid'].'&showgraph=1'.url_param('path'));
$bar = new CDiv($bar, 'sla-bar');
$bar->setAttribute('title', _s('Only the last 20%% of the indicator is displayed.'));
$slaBar = array(
$bar,
new CSpan(sprintf('%.4f', $slaBad), 'sla-value '.(($service['goodsla'] > $slaGood) ? 'red' : 'green'))
);
$sla = new CDiv($slaBar, 'invisible');
$sla2 = array(
new CSpan(sprintf('%.4f', $slaGood), 'sla-value '.(($service['goodsla'] > $slaGood) ? 'red' : 'green')),
'/',
new CSpan(sprintf('%.4f', $service['goodsla']), 'sla-value')
);
}
$serviceNode = array(
'id' => $service['serviceid'],
'caption' => $caption,
'description' => ($service['trigger']) ? $service['trigger']['description'] : _('None'),
'reason' => $problemList,
'sla' => $sla,
'sla2' => $sla2,
'parentid' => ($parentService) ? $parentService['serviceid'] : 0,
'status' => ($serviceSla['status'] !== null) ? $serviceSla['status'] : '-'
);
}
// hard dependencies and dependencies for the "root" node
if (!$dependency || $dependency['soft'] == 0) {
$tree[$serviceNode['id']] = $serviceNode;
foreach ($service['dependencies'] as $dependency) {
$childService = $services[$dependency['servicedownid']];
createServiceMonitoringTree($services, $slaData, $period, $tree, $service, $childService, $dependency);
}
}
// soft dependencies
else {
$serviceNode['caption'] = new CSpan($serviceNode['caption'], 'service-caption-soft');
$tree[$serviceNode['id'].'.'.$dependency['linkid']] = $serviceNode;
}
}
/**
* Calculates the current IT service status based on it's child services.
*
* The new statuses are written to the $services array in the "newStatus" property.
*
* @param string $rootServiceId id of the service to start calculation from
* @param array $servicesLinks array with service IDs as keys and arrays of child service IDs as values
* @param array $services array of services with IDs as keys
* @param array $triggers array of triggers with trigger IDs as keys
*/
function calculateItServiceStatus($rootServiceId, array $servicesLinks, array &$services, array $triggers) {
$service = &$services[$rootServiceId];
// don't calculate a thread if it is already calculated
// it can be with soft links
if (isset($service['newStatus'])) {
return;
}
$newStatus = SERVICE_STATUS_OK;
// leaf service with a trigger
if ($service['triggerid'] != 0) {
if ($service['algorithm'] != SERVICE_ALGORITHM_NONE) {
$trigger = $triggers[$service['triggerid']];
$newStatus = calculateItServiceStatusByTrigger($trigger['status'], $trigger['value'], $trigger['priority']);
}
}
elseif (isset($servicesLinks[$rootServiceId])) {
// calculate status depending on children status
$statuses = array();
foreach ($servicesLinks[$rootServiceId] as $rootServiceId) {
calculateItServiceStatus($rootServiceId, $servicesLinks, $services, $triggers);
$statuses[] = $services[$rootServiceId]['newStatus'];
}
if ($statuses && $service['algorithm'] != SERVICE_ALGORITHM_NONE) {
$maxSeverity = max($statuses);
// always return the maximum status of child services
if ($service['algorithm'] == SERVICE_ALGORITHM_MAX && $maxSeverity != SERVICE_STATUS_OK) {
$newStatus = $maxSeverity;
}
elseif (min($statuses) != SERVICE_STATUS_OK) {
$newStatus = $maxSeverity;
}
}
}
$service['newStatus'] = $newStatus;
}
/**
* Checks the status of the trigger and returns the corresponding service status.
*
* @param int $triggerStatus
* @param int $triggerValue
* @param int $triggerPriority
*
* @return int
*/
function calculateItServiceStatusByTrigger($triggerStatus, $triggerValue, $triggerPriority) {
if ($triggerStatus == TRIGGER_STATUS_DISABLED || $triggerValue == TRIGGER_VALUE_FALSE) {
return SERVICE_STATUS_OK;
}
return $triggerPriority;
}
/**
* Updates the status of all IT services
*/
function updateItServices() {
$servicesLinks = array();
$services = array();
$rootServiceIds = array();
$triggers = array();
// auxiliary arrays
$triggerIds = array();
$servicesLinksDown = array();
$result = DBselect('SELECT sl.serviceupid,sl.servicedownid FROM services_links sl');
while ($row = DBfetch($result)) {
$servicesLinks[$row['serviceupid']][] = $row['servicedownid'];
$servicesLinksDown[$row['servicedownid']] = true;
}
$result = DBselect('SELECT s.serviceid,s.algorithm,s.triggerid,s.status FROM services s ORDER BY s.serviceid');
while ($row = DBfetch($result)) {
$services[$row['serviceid']] = array(
'serviceid' => $row['serviceid'],
'algorithm' => $row['algorithm'],
'triggerid' => $row['triggerid'],
'status' => $row['status']
);
if (!isset($servicesLinksDown[$row['serviceid']])) {
$rootServiceIds[] = $row['serviceid'];
}
if ($row['triggerid'] != 0) {
$triggerIds[$row['triggerid']] = true;
}
}
if ($triggerIds) {
$result = DBselect(
'SELECT t.triggerid,t.priority,t.status,t.value'.
' FROM triggers t'.
' WHERE '.dbConditionInt('t.triggerid', array_keys($triggerIds))
);
while ($row = DBfetch($result)) {
$triggers[$row['triggerid']] = array(
'priority' => $row['priority'],
'status' => $row['status'],
'value' => $row['value']
);
}
}
// clearing auxiliary variables
unset($triggerIds, $servicesLinksDown);
// calculating data
foreach ($rootServiceIds as $rootServiceId) {
calculateItServiceStatus($rootServiceId, $servicesLinks, $services, $triggers);
}
// updating changed data
$updates = array();
$inserts = array();
$clock = time();
foreach ($services as $service) {
if ($service['newStatus'] != $service['status']) {
$updates[] = array(
'values' => array('status' => $service['newStatus']),
'where' => array('serviceid' => $service['serviceid'])
);
$inserts[] = array(
'serviceid' => $service['serviceid'],
'clock' => $clock,
'value' => $service['newStatus']
);
}
}
if ($updates) {
DB::update('services', $updates);
DB::insert('service_alarms', $inserts);
}
}
/**
* Validate the new service time. Validation is implemented as a separate function to be available directly from the
* frontend.
*
* @throws APIException if the given service time is invalid
*
* @param array $serviceTime
*
* @return void
*/
function checkServiceTime(array $serviceTime) {
// type validation
$serviceTypes = array(
SERVICE_TIME_TYPE_DOWNTIME,
SERVICE_TIME_TYPE_ONETIME_DOWNTIME,
SERVICE_TIME_TYPE_UPTIME
);
if (!isset($serviceTime['type']) || !in_array($serviceTime['type'], $serviceTypes)) {
throw new APIException(ZBX_API_ERROR_PARAMETERS, _('Incorrect service time type.'));
}
// one-time downtime validation
if ($serviceTime['type'] == SERVICE_TIME_TYPE_ONETIME_DOWNTIME) {
if (!isset($serviceTime['ts_from']) || !validateUnixTime($serviceTime['ts_from'])) {
throw new APIException(ZBX_API_ERROR_PARAMETERS, _('Incorrect service start time.'));
}
if (!isset($serviceTime['ts_to']) || !validateUnixTime($serviceTime['ts_to'])) {
throw new APIException(ZBX_API_ERROR_PARAMETERS, _('Incorrect service end time.'));
}
}
// recurring downtime validation
else {
if (!isset($serviceTime['ts_from']) || !zbx_is_int($serviceTime['ts_from']) || $serviceTime['ts_from'] < 0 || $serviceTime['ts_from'] > SEC_PER_WEEK) {
throw new APIException(ZBX_API_ERROR_PARAMETERS, _('Incorrect service start time.'));
}
if (!isset($serviceTime['ts_to']) || !zbx_is_int($serviceTime['ts_to']) || $serviceTime['ts_to'] < 0 || $serviceTime['ts_to'] > SEC_PER_WEEK) {
throw new APIException(ZBX_API_ERROR_PARAMETERS, _('Incorrect service end time.'));
}
}
if ($serviceTime['ts_from'] >= $serviceTime['ts_to']) {
throw new APIException(ZBX_API_ERROR_PARAMETERS, _('Service start time must be less than end time.'));
}
}
|