Probe::MachineInfo::Hostname - Hostname Name


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

Index


Code Index:

NAME

Top

Probe::MachineInfo::Hostname - Hostname Name

SYNOPSIS

Top

blah

DESCRIPTION

Top

blah

PUBLIC INTERFACE

Top

get

 get()

AUTHOR

Top

Sagar R. Shah


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


# pragmata
use base qw(Probe::MachineInfo::Metric);
use strict;
use warnings;


# Standard Perl Library and CPAN modules
use English;
use Sys::Hostname;

#
# CLASS ATTRIBUTES
#

#
# CONSTRUCTOR
#


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

	return hostname();
}

1;