Probe::MachineInfo::Hostid - Host ID


Probe-MachineInfo documentation Contained in the Probe-MachineInfo distribution.

Index


Code Index:

NAME

Top

Probe::MachineInfo::Hostid - Host ID

SYNOPSIS

Top

blah

DESCRIPTION

Top

blah

PUBLIC INTERFACE

Top

command

 command

AUTHOR

Top

Sagar R. Shah


Probe-MachineInfo documentation Contained in the Probe-MachineInfo distribution.
package Probe::MachineInfo::Hostid;

use IO::All;
# pragmata
use base qw(Probe::MachineInfo::SimpleMetric);
use strict;
use warnings;



# Standard Perl Library and CPAN modules
use English;

#
# CLASS ATTRIBUTES
#

#
# CONSTRUCTOR
#


sub command {
	my ($self) = @_;

	return '/usr/bin/hostid';

}


1;