Completed
Pull Request — develop (#184)
by Neil
25:03
created

Device_ucd_memory   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 61
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 61
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A buildRRDGraphParams() 0 7 1
A buildRRDXport() 0 49 1
1
<?php
2
/**
3
 * BaseGraph.php
4
 *
5
 * This program is free software: you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation, either version 3 of the License, or
8
 * (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 *
18
 * @package    LibreNMS
19
 * @link       http://librenms.org
20
 * @copyright  2016 Neil Lathwood
21
 * @author     Neil Lathwood <[email protected]>
22
 */
23
24
namespace App\Graphs;
25
26
use Illuminate\Http\Request;
27
use App\Models\Device;
28
use Settings;
29
30
class Device_ucd_memory extends BaseGraph
0 ignored issues
show
Coding Style introduced by
This class is not in CamelCase format.

Classes in PHP are usually named in CamelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. The whole name starts with a capital letter as well.

Thus the name database provider becomes DatabaseProvider.

Loading history...
31
{
32
33
    public function buildRRDGraphParams($input) {
0 ignored issues
show
Unused Code introduced by
The parameter $input is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
34
        //FIXME Add support for PNG Graph
35
        return [
36
            'headers' => '',
37
            'defs' => '',
38
        ];
39
    }
40
41
    public function buildRRDXport($input)
42
    {
43
        $rrd_path = Settings::get('rrd_dir');
44
        $device_id = $input->{'device_id'};
45
        $device = Device::find($device_id);
46
        $hostname = $device->hostname;
47
48
        $headers = ['RAM Used', '-Sh Bu Ca', 'RAM Free', 'Swap Used', 'Shared', 'Buffers', 'Cached'];
49
        $defs = "DEF:atotalswap=$rrd_path/$hostname/ucd_mem.rrd:totalswap:AVERAGE \
50
                 DEF:aavailswap=$rrd_path/$hostname/ucd_mem.rrd:availswap:AVERAGE \
51
                 DEF:atotalreal=$rrd_path/$hostname/ucd_mem.rrd:totalreal:AVERAGE \
52
                 DEF:aavailreal=$rrd_path/$hostname/ucd_mem.rrd:availreal:AVERAGE \
53
                 DEF:atotalfree=$rrd_path/$hostname/ucd_mem.rrd:totalfree:AVERAGE \
54
                 DEF:ashared=$rrd_path/$hostname/ucd_mem.rrd:shared:AVERAGE \
55
                 DEF:abuffered=$rrd_path/$hostname/ucd_mem.rrd:buffered:AVERAGE \
56
                 DEF:acached=$rrd_path/$hostname/ucd_mem.rrd:cached:AVERAGE \
57
                 CDEF:totalswap=atotalswap,1024,* \
58
                 CDEF:availswap=aavailswap,1024,* \
59
                 CDEF:totalreal=atotalreal,1024,* \
60
                 CDEF:availreal=aavailreal,1024,* \
61
                 CDEF:totalfree=atotalfree,1024,* \
62
                 CDEF:shared=ashared,1024,* \
63
                 CDEF:buffered=abuffered,1024,* \
64
                 CDEF:cached=acached,1024,* \
65
                 CDEF:usedreal=totalreal,availreal,- \
66
                 CDEF:usedswap=totalswap,availswap,- \
67
                 CDEF:trueused=usedreal,cached,buffered,shared,-,-,- \
68
                 CDEF:true_perc=trueused,totalreal,/,100,* \
69
                 CDEF:swrl_perc=usedswap,totalreal,/,100,* \
70
                 CDEF:swap_perc=usedswap,totalswap,/,100,* \
71
                 CDEF:real_perc=usedreal,totalreal,/,100,* \
72
                 CDEF:real_percf=100,real_perc,- \
73
                 CDEF:shared_perc=shared,totalreal,/,100,* \
74
                 CDEF:buffered_perc=buffered,totalreal,/,100,* \
75
                 CDEF:cached_perc=cached,totalreal,/,100,* \
76
                 CDEF:cusedswap=usedswap,-1,* \
77
                 CDEF:cdeftot=availreal,shared,buffered,usedreal,cached,usedswap,+,+,+,+,+ \
78
                 XPORT:usedreal:'Ram Used' \
79
                 XPORT:trueused:'-Sh, Bu, Ca' \
80
                 XPORT:availreal:'RAM Free' \
81
                 XPORT:usedswap:'Swap Used' \
82
                 XPORT:shared:'Shared' \
83
                 XPORT:buffered:'Buffers' \
84
                 XPORT:cached:'Cached'";
85
        return [
86
            'headers' => $headers,
87
            'defs' => $defs,
88
        ];
89
    }
90
}
91