Source
<?php
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** 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 Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
class Sla {
/**
* Create data for sla related test.
*
* @return array
*/
public static function load() {
CDataHelper::call('sla.create', [
[
'name' => 'Update SLA',
'period' => 0,
'slo' => '99.99',
'effective_date' => 1619827200,
'timezone' => 'Europe/Riga',
'service_tags' => [
[
'tag' => 'test',
'value' => 'test123'
]
]
],
[
'name' => 'SLA with schedule and downtime',
'period' => 1,
'slo' => '12.3456',
'effective_date' => 1651363200,
'timezone' => 'Europe/Riga',
'service_tags' => [
[
'tag' => 'old_tag_1',
'value' => 'old_value_1'
],
[
'tag' => 'test',
'operator' => 2,
'value' => 'test'
]
],
'excluded_downtimes' => [
[
'name' => 'excluded downtime',
'period_from' => 1651363200,
'period_to' => 1777593600
]
],
'schedule' => [
[
'period_from' => 0,
'period_to' => 120
],
[
'period_from' => 60,
'period_to' => 240
]
]
],
[
'name' => 'SLA для удаления - 頑張って',
'period' => 3,
'slo' => '66.6',
'effective_date' => 1651352400,
'timezone' => 'Europe/Riga',
'service_tags' => [
[
'tag' => 'tag',
'value' => 'value'
]
],
'excluded_downtimes' => [
[
'name' => 'excluded downtime',
'period_from' => 1651352400,
'period_to' => 1777582800
]