This file is indexed.

/usr/share/perl5/Collectd/Plugins/OpenVZ.pm is in collectd-core 5.4.1-6+deb8u1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#
# collectd - OpenVZ collectd plugin
# Copyright (C) 2009  Jonathan Kolb
#
# 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.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
#
# Author:
#   Jonathan Kolb <jon at b0g.us>
#

package Collectd::Plugins::OpenVZ;

use strict;
use warnings;

use Collectd qw( :all );

my @cpu_instances = ('user', 'nice', 'system', 'idle', 'wait', 'interrupt', 'softirq', 'steal');
my @if_instances = ('if_octets', 'if_packets', 'if_errors');
my $vzctl = '/usr/sbin/vzctl';
my $vzlist = '/usr/sbin/vzlist';

my $last_stat = {};

sub openvz_read
{
    my %v = (time => time(), interval => plugin_get_interval());
    my (@veids, $veid, $name, $key, $val, $i, @lines, @parts, @counters);

    @veids = map { s/ //g; $_; } split(/\n/, `$vzlist -Ho veid`);

    foreach $veid (@veids)
    {
        ($name = `$vzlist -Ho name $veid`) =~ s/^\s*(.*?)\s*$/$1/;
        $name = $veid if ($name =~ /^-$/);

        $v{'host'} = $name;

        #####################################################################
        # interface

        $v{'plugin'} = 'interface';
        delete $v{'plugin_instance'};

        @lines = split(/\n/, `$vzctl exec $veid cat /proc/net/dev`);
        foreach (@lines)
        {
            next if (!/:/);                

            @parts = split(/:/);
            ($key = $parts[0]) =~ s/^\s*(.*?)\s*$/$1/;
            ($val = $parts[1]) =~ s/^\s*(.*?)\s*$/$1/;
            @counters = split(/ +/, $val);

            $v{'type_instance'} = $key;
            for ($key = 0; $key <= $#if_instances; ++$key)
            {
                $v{'type'} = $if_instances[$key];
                $v{'values'} = [ $counters[$key], $counters[$key + 8] ];
                plugin_dispatch_values(\%v);
            }
        }

        #####################################################################
        # cpu

        $v{'plugin'} = 'cpu';
        $v{'type'} = 'cpu';

        $i = 0;
        @lines = split(/\n/, `$vzctl exec $veid cat /proc/stat`);
        foreach (@lines)
        {
            next if (!/^cpu[0-9]/);

            @counters = split(/ +/);
            shift(@counters);

            # Remove once OpenVZ bug 1376 is resolved
            if (48485 == $counters[3])
            {
                $counters[3] = $last_stat->{"$veid-$i-idle"};
                $counters[4] = $last_stat->{"$veid-$i-wait"};
            }
            else
            {
                $last_stat->{"$veid-$i-idle"} = $counters[3];
                $last_stat->{"$veid-$i-wait"} = $counters[4];
            }

            $v{'plugin_instance'} = $i++;
            for ($key = 0; $key <= $#counters; ++$key)
            {
                $v{'type_instance'} = $cpu_instances[$key];
                $v{'values'} = [ $counters[$key] ];
                plugin_dispatch_values(\%v);
            }
        }

        #####################################################################
        # df

        $v{'plugin'} = 'df';
        delete $v{'plugin_instance'};
        $v{'type'} = 'df';

        $val = join(' ', map { (split)[1] } split(/\n/, `$vzctl exec $veid cat /proc/mounts`));
        @lines = split(/\n/, `$vzctl exec $veid stat -tf $val`);
        foreach (@lines)
        {
            @parts = split(/ /);
            next if (0 == $parts[7]);

            $val = substr($parts[0], 1);
            $val = 'root' if ($val =~ /^$/);
            $val =~ s#/#-#g;

            $v{'type_instance'} = $val;
            $v{'values'} = [ $parts[5] * ($parts[6] - $parts[7]), $parts[5] * $parts[7] ];
            plugin_dispatch_values(\%v);
        }

        #####################################################################
        # load

        $v{'plugin'} = 'load';
        delete $v{'plugin_instance'};
        $v{'type'} = 'load';
        delete $v{'type_instance'};

        @parts = split(/ +/, `$vzctl exec $veid cat /proc/loadavg`);
        $v{'values'} = [ $parts[0], $parts[1], $parts[2] ];
        plugin_dispatch_values(\%v);

        #####################################################################
        # processes

        my $ps_states = { 'paging' => 0, 'blocked' => 0, 'zombies' => 0, 'stopped' => 0,
            'running' => 0, 'sleeping' => 0 };
        my $state_map = { 'R' => 'running', 'S' => 'sleeping', 'D' => 'blocked',
            'Z' => 'zombies', 'T' => 'stopped', 'W' => 'paging' };

        $v{'plugin'} = 'processes';
        delete $v{'plugin_instance'};
        $v{'type'} = 'ps_state';

        @lines = map { (split)[2] } split(/\n/, `$vzctl exec $veid cat '/proc/[0-9]*/stat'`);
        foreach $key (@lines)
        {
            ++$ps_states->{$state_map->{$key}};
        }

        foreach $key (keys %{$ps_states})
        {
            $v{'type_instance'} = $key;
            $v{'values'} = [ $ps_states->{$key} ];
            plugin_dispatch_values(\%v);
        }

        #####################################################################
        # users

        $v{'plugin'} = 'users';
        delete $v{'plugin_instance'};
        $v{'type'} = 'users';
        delete $v{'type_instance'};

        @lines = split(/\n/, `$vzctl exec $veid w -h`);
        $v{'values'} = [ scalar(@lines) ];
        plugin_dispatch_values(\%v);
    }

    return 1;
}

plugin_register(TYPE_READ, 'OpenVZ', 'openvz_read');

return 1;