summaryrefslogtreecommitdiff
path: root/src/pmdas/netfilter/pmdanetfilter.pl
blob: 21aafa0c35e76f8deca981631d2ad38a57eb6aa7 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#
# Copyright (c) 2012 Red Hat.
# Copyright (c) 2009 Aconex.  All Rights Reserved.
#
# 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.
#

use strict;
use warnings;
use PCP::PMDA;

my $pmda = PCP::PMDA->new('netfilter', 97);
my $procfs = '/proc/sys/net/ipv4/';

sub netfilter_fetch_callback
{
    my ($cluster, $item, $inst) = @_;
    my $metric_name = pmda_pmid_name($cluster, $item);
    my ($path, $name, $value, $fh, @vals);

    if ($inst != PM_IN_NULL)	{ return (PM_ERR_INST, 0); }
    if (!defined($metric_name))	{ return (PM_ERR_PMID, 0); }

    $metric_name =~ s/\./\//;
    $name = $procfs . $metric_name;
    open($fh, $name) || 	return (PM_ERR_APPVERSION, 0);
    $value = <$fh>;
    close $fh;
    chomp $value;

    return ($value, 1);
}

$pmda->add_metric(pmda_pmid(0,0), PM_TYPE_U32, PM_INDOM_NULL, PM_SEM_INSTANT,
		pmda_units(0,0,0,0,0,0), 'netfilter.ip_conntrack_max', '', '');
$pmda->add_metric(pmda_pmid(0,1), PM_TYPE_U32, PM_INDOM_NULL, PM_SEM_INSTANT,
		pmda_units(0,0,0,0,0,0), 'netfilter.ip_conntrack_count', '', '');

$pmda->set_fetch_callback(\&netfilter_fetch_callback);
$pmda->set_user('pcp');
$pmda->run;

=pod

=head1 NAME

pmdanetfilter - Linux netfilter IP connection tracking performance metrics domain agent (PMDA)

=head1 DESCRIPTION

B<pmdanetfilter> is a Performance Metrics Domain Agent (PMDA) which
exports metric values from IP connection tracking module in the Linux
kernel.

=head1 INSTALLATION

If you want access to the names and values for the netfilter performance
metrics, do the following as root:

	# cd $PCP_PMDAS_DIR/netfilter
	# ./Install

If you want to undo the installation, do the following as root:

	# cd $PCP_PMDAS_DIR/netfilter
	# ./Remove

B<pmdanetfilter> is launched by pmcd(1) and should never be executed
directly.  The Install and Remove scripts notify pmcd(1) when
the agent is installed or removed.

=head1 FILES

=over

=item $PCP_PMDAS_DIR/netfilter/Install

installation script for the B<pmdanetfilter> agent

=item $PCP_PMDAS_DIR/netfilter/Remove

undo installation script for the B<pmdanetfilter> agent

=item $PCP_LOG_DIR/pmcd/netfilter.log

default log file for error messages from B<pmdanetfilter>

=back

=head1 SEE ALSO

pmcd(1).