Probe::MachineInfo - The great new Probe::MachineInfo!


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

Index


Code Index:

NAME

Top

Probe::MachineInfo - The great new Probe::MachineInfo!

SYNOPSIS

Top

Probe::MachineInfo aims to be a set of collector/probe classes which allow the extraction of information about the configuration of a machine. For example the number of CPUs it has and how much memory it has.

This release is really just a taster release of what's to come. The architecture may change quite a lot. At the moment there is a bit of a Unix bias because that's the type of operating system that I do almost all of my real work on. However I also hope to add support for Windows hosts at some earlyish stage.

Quick summary of what the module does.

Perhaps a little code snippet.

    use Probe::MachineInfo;

    my $foo = Probe::MachineInfo->new();
    ...

SUPPORTED PLATFORMS

Top

I'll support any platform that I have experience of, or which someone will tell me is compatible with the existing code (e.g. another unix variant) or which someone will give me a patch for and help me test.

INSTALLATION

Top

This module uses Module::Build for its installation. To install this module type the following:

  perl Build.PL
  ./Build
  ./Build test
  ./Build install




If you do not have Module::Build type:

  perl Makefile.PL

to fetch it. Or use CPAN or CPANPLUS and fetch it "manually".

DEPENDENCIES

Top

See the Build.PL for a list of dependencies

TODO

Top

General

Metric Probe Additions

BUGS

Top

Please report any bugs or feature requests to bug-config-machineinfo@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SOURCE AVAILABILITY

Top

This source is part of a SourceForge project which always has the latest sources in svn.

http://sourceforge.net/projects/sagar-r-shah/

AUTHOR

Top

Sagar R. Shah

COPYRIGHT & LICENSE

Top


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

use warnings;
use strict;
use vars qw($VERSION);

$VERSION = '0.11';


1;