| Probe-MachineInfo documentation | Contained in the Probe-MachineInfo distribution. |
Probe::MachineInfo::Hostname - Hostname Name
blah
blah
get()
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;