Collectd-Plugins-Amavis

 view release on metacpan or  search on metacpan

lib/Collectd/Plugins/Amavis.pm  view on Meta::CPAN

package Collectd::Plugins::Amavis;

use strict;
use warnings;
use Collectd qw( :all );

use BerkeleyDB;

# ABSTRACT: collectd plugin for reading amavisd-new performance counters
our $VERSION = '1.001'; # VERSION


our $db_env = '/var/lib/amavis/db';
our $db_file = 'snmp.db';

sub amavis_stats_config {
    my ($ci) = @_;
    foreach my $item (@{$ci->{'children'}}) {
        my $key = lc($item->{'key'});
        my $val = $item->{'values'};

        if ($key eq 'db_env' ) {
            $db_env = $val->[0];
        } elsif ($key eq 'db_file' ) {
            $db_file = $val->[0];
        }
    }
    return 1;
}

sub read_amavis_snmp_db {
  my $stats = {};

  my $env = BerkeleyDB::Env->new(
    -Home => $db_env,
    -Flags => DB_INIT_CDB | DB_INIT_MPOOL,
    -ErrFile => \*STDOUT,
    -Verbose => 1
  ) or die "could not open db_env: $!";

  my $db = BerkeleyDB::Hash->new(
    -Filename => $db_file,
    -Env => $env
  ) or die "could not open db: $!";

  my $cursor = $db->db_cursor;

  my ( $key, $val ) = ('','');
  while ( $cursor->c_get($key,$val,DB_NEXT) == 0 ) {
    if( $val !~ s/^(?:C32|C64|INT) //) {
      next;
    }
    $val = int( $val );
    $key =~ s/([a-z])([A-Z])/$1_$2/g;
    $key =~ s/[\.\/\-]/_/g;
    $key = lc( $key );

    if( $key =~ /^(sys|log)/) {
      next;
    }

    $stats->{$key} = $val;
  }
  return $stats;
}

sub amavis_stats_read {
  my $stats = read_amavis_snmp_db();
    
  foreach my $metric (sort keys %$stats) {
    my $vl = {
      plugin => 'amavis',
      plugin_instance => 'snmp',
      type => 'counter',
      type_instance => $metric,
      values => [ $stats->{$metric} ],
    };
    plugin_dispatch_values($vl);
  }
  return 1;
}

plugin_register(TYPE_CONFIG, "Amavis", "amavis_stats_config");
plugin_register(TYPE_READ, "Amavis", "amavis_stats_read");

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Collectd::Plugins::Amavis - collectd plugin for reading amavisd-new performance counters

=head1 VERSION

version 1.001

=head1 SYNOPSIS

This is a collectd plugin for reading counters from a amavisd-new server.

In your collectd config:

  <LoadPlugin "perl">
    Globals true



( run in 0.830 second using v1.01-cache-2.11-cpan-fe3c2283af0 )