Issues (2963)

includes/html/graphs/device/ucd_interrupts.inc.php (1 issue)

1
<?php
2
3
$rrd_filename = Rrd::name($device['hostname'], 'ucd_ssRawInterrupts');
0 ignored issues
show
The method name() does not exist on App\Facades\Rrd. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

3
$rrd_filename = Rrd::/** @scrutinizer ignore-call */ name($device['hostname'], 'ucd_ssRawInterrupts');
Loading history...
4
5
$ds = 'value';
6
7
$colour_area = 'EEBBBB';
8
$colour_line = 'CC0000';
9
10
$colour_area_max = 'cc9999';
11
12
// $graph_max = 1;
13
$scale_min = 0;
14
15
$unit_text = 'Interrupts/s';
16
17
require 'includes/html/graphs/generic_simplex.inc.php';
18