JMX::Jmx4Perl::Product::SpringDM - Handler for Spring dm-Server.


jmx4perl documentation Contained in the jmx4perl distribution.

Index


Code Index:

NAME

Top

JMX::Jmx4Perl::Product::SpringDM - Handler for Spring dm-Server.

DESCRIPTION

Top

This is the product handler support for Spring dm Server (http://www.springsource.com/products/dmserver).

LICENSE

Top

This file is part of jmx4perl.

Jmx4perl 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.

jmx4perl 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 jmx4perl. If not, see <http://www.gnu.org/licenses/>.

A commercial license is available as well. Please contact roland@cpan.org for further details.

AUTHOR

Top

roland@cpan.org


jmx4perl documentation Contained in the jmx4perl distribution.
#!/usr/bin/perl
package JMX::Jmx4Perl::Product::SpringDM;

use JMX::Jmx4Perl::Product::BaseHandler;
use strict;
use base "JMX::Jmx4Perl::Product::BaseHandler";
use Data::Dumper;

use Carp qw(croak);

sub id {
    return "springdm";
}

sub name {
    return "Spring dm-Server";
}

sub vendor {
    return "SpringSource";
}

sub order { 
    return 300;
}

sub version {
    return shift->{version};
}

sub autodetect_pattern {
    return sub { 
        my $self = shift;
        my $j4p = $self->{jmx4perl};        
        my $ret = $j4p->search("com.springsource.kernel:name=com.springsource.kernel.agent.dm,*");
        #print Dumper($ret);
        if ($ret) {
            for my $n (@$ret) {
                my ($domain,$attrs)  = $j4p->parse_name($n);
                if ($attrs->{version}) {
                    $self->{version} = $attrs->{version};
                    return 1;
                }
            }
        }
        return undef;
    };
}

1;