jmx4perl/lib/JMX/Jmx4Perl/Product/Jonas.pm
2017-10-31 14:38:28 +01:00

90 lines
1.9 KiB
Perl

#!/usr/bin/perl
package JMX::Jmx4Perl::Product::Jonas;
use JMX::Jmx4Perl::Product::BaseHandler;
use strict;
use base "JMX::Jmx4Perl::Product::BaseHandler";
use Carp qw(croak);
=head1 NAME
JMX::Jmx4Perl::Product::Jonas - Handler for Jonas
=head1 DESCRIPTION
This is the product handler support Jonas 4 and 5 (L<http://jonas.ow2.org/>)
=cut
sub id {
return "jonas";
}
sub name {
return "Jonas";
}
sub order {
return 10;
}
sub autodetect_pattern {
return ("vendor",qr/OW2/i);
}
sub server_info {
my $self = shift;
my $ret = $self->SUPER::server_info();
$ret .= sprintf("%-10.10s %s\n","Web:",$self->{jmx4perl}->get_attribute("jonas:name=webContainers,type=service","ServerName"));
}
sub jsr77 {
return 1;
}
sub init_aliases {
return
{
attributes =>
{
#SERVER_ADDRESS => [ "jboss.system:type=ServerInfo", "HostAddress"],
#SERVER_HOSTNAME => [ "jonas:name=jonas,type=ServerProxy", "HostName"],
},
operations =>
{
#THREAD_DUMP => [ "jboss.system:type=ServerInfo", "listThreadDump"]
}
# Alias => [ "mbean", "attribute", "path" ]
};
}
=head1 LICENSE
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.
=head1 AUTHOR
roland@cpan.org
=cut
1;