Source
93
93
}
94
94
95
95
$graph->setWidth($width);
96
96
$graph->setHeight($height);
97
97
98
98
// array sorting
99
99
CArrayHelper::sort($dbGraph['gitems'], [
100
100
['field' => 'sortorder', 'order' => ZBX_SORT_UP]
101
101
]);
102
102
103
+
$db_items = API::Item()->get([
104
+
'output' => ['value_type'],
105
+
'itemids' => array_column($dbGraph['gitems'], 'itemid'),
106
+
'webitems' => true,
107
+
'preservekeys' => true
108
+
]);
109
+
103
110
// get graph items
104
111
foreach ($dbGraph['gitems'] as $gItem) {
105
-
$graph->addItem(
106
-
$gItem['itemid'],
107
-
$gItem['calc_fnc'],
108
-
$gItem['color'],
109
-
$gItem['type']
110
-
);
112
+
if ($db_items[$gItem['itemid']]['value_type'] != ITEM_VALUE_TYPE_BINARY) {
113
+
$graph->addItem($gItem['itemid'], $gItem['calc_fnc'], $gItem['color'], $gItem['type']);
114
+
}
111
115
}
112
116
113
117
$hostName = '';
114
118
115
119
foreach ($dbGraph['hosts'] as $gItemHost) {
116
120
if ($hostName === '') {
117
121
$hostName = $gItemHost['name'];
118
122
}
119
123
elseif ($hostName !== $gItemHost['name']) {
120
124
$hostName = '';