Source
xxxxxxxxxx
$colors = ['Red', 'Dark Green', 'Blue', 'Dark Yellow', 'Cyan', 'Gray', 'Dark Red', 'Green', 'Dark Blue', 'Yellow',
<?php
/*
** Zabbix
** Copyright (C) 2001-2023 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.
**/
require_once dirname(__FILE__).'/include/config.inc.php';
require_once dirname(__FILE__).'/include/graphs.inc.php';
$page['file'] = 'chart3.php';
$page['type'] = PAGE_TYPE_IMAGE;
require_once dirname(__FILE__).'/include/page_header.php';
// VAR TYPE OPTIONAL FLAGS VALIDATION EXCEPTION
$fields = [
'from' => [T_ZBX_RANGE_TIME, O_OPT, P_SYS, null, null],
'to' => [T_ZBX_RANGE_TIME, O_OPT, P_SYS, null, null],
'profileIdx' => [T_ZBX_STR, O_OPT, null, null, null],
'profileIdx2' => [T_ZBX_STR, O_OPT, null, null, null],
'httptestid' => [T_ZBX_INT, O_OPT, P_NZERO, null, null],
'http_item_type' => [T_ZBX_INT, O_OPT, null, null, null],
'name' => [T_ZBX_STR, O_OPT, null, null, null],
'width' => [T_ZBX_INT, O_OPT, null, BETWEEN(CLineGraphDraw::GRAPH_WIDTH_MIN, 65535), null],
'height' => [T_ZBX_INT, O_OPT, null, BETWEEN(CLineGraphDraw::GRAPH_HEIGHT_MIN, 65535), null],
'ymin_type' => [T_ZBX_INT, O_OPT, null, IN('0,1,2'), null],
'ymax_type' => [T_ZBX_INT, O_OPT, null, IN('0,1,2'), null],
'ymin_itemid' => [T_ZBX_INT, O_OPT, null, DB_ID, null],
'ymax_itemid' => [T_ZBX_INT, O_OPT, null, DB_ID, null],
'legend' => [T_ZBX_INT, O_OPT, null, IN('0,1'), null],
'showworkperiod' => [T_ZBX_INT, O_OPT, null, IN('0,1'), null],
'showtriggers' => [T_ZBX_INT, O_OPT, null, IN('0,1'), null],
'graphtype' => [T_ZBX_INT, O_OPT, null, IN('0,1'), null],
'yaxismin' => [T_ZBX_DBL, O_OPT, null, null, null],
'yaxismax' => [T_ZBX_DBL, O_OPT, null, null, null],
'percent_left' => [T_ZBX_DBL, O_OPT, null, BETWEEN_DBL(0, 100, 4), null],
'percent_right' => [T_ZBX_DBL, O_OPT, null, BETWEEN_DBL(0, 100, 4), null],
'outer' => [T_ZBX_INT, O_OPT, null, IN('0,1'), null],
'items' => [T_ZBX_STR, O_OPT, P_ONLY_TD_ARRAY, null, null],
'i' => [T_ZBX_STR, O_OPT, P_ONLY_ARRAY, null, null],
'onlyHeight' => [T_ZBX_INT, O_OPT, null, IN('0,1'), null],
'widget_view' => [T_ZBX_INT, O_OPT, null, IN('0,1'), null]
];
if (!check_fields($fields)) {
session_write_close();
exit();
}
validateTimeSelectorPeriod(getRequest('from'), getRequest('to'));