aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/memory.php
blob: 9fd2e3041ae6f58b907ae5a57678248aacb7bbb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php

# Collectd Memory plugin

require_once 'conf/common.inc.php';
require_once 'type/GenericStacked.class.php';

## LAYOUT
# memory/
# memory/memory-buffered.rrd
# memory/memory-cached.rrd
# memory/memory-free.rrd
# memory/memory-used.rrd

$obj = new Type_GenericStacked($CONFIG, $_GET);
$obj->order = array('free', 'inactive', 'buffered', 'cached', 'cache', 'locked', 'used', 'active', 'wired');
$obj->ds_names = array(
	'free'     => 'Free',
	'inactive' => 'Inactive',
	'cached'   => 'Cached',
	'cache'    => 'Cache',
	'buffered' => 'Buffered',
	'locked'   => 'Locked',
	'used'     => 'Used',
	'active'   => 'Active',
	'wired'    => 'Wired',
);
$obj->colors = array(
	'free' => '00e000',
	'inactive' => '00b000',
	'cached' => '0000ff',
	'cache' => '0000ff',
	'buffered' => 'ffb000',
	'locked' => 'ff00ff',
	'used' => 'ff0000',
	'active' => 'ff00ff',
	'wired' => 'ff0000',
);

$obj->rrd_title = 'Physical memory utilization';
$obj->rrd_vertical = 'Bytes';
$obj->rrd_format = '%5.1lf%s';

$obj->rrd_graph();