This kinda depends on what you mean by status.

I am involved in Enterprise management where we need to monitor all sorts of servers Unix/Linux/NT, Databases and applications etc. Typically we have a piece of sofware (or agent if you will) that will send SNMP traps to our "manager" server. This would involve writing a piece of code to evaluate whatever metrics you want to monitor and possibly set thresholds against. If these thresholds are exceeded you can send a trap with the relevant info. On the other hand you may need to poll the device to check on specific info. This could be in the form of a ping or an SNMP get.

So if in status you mean "is it up/available on the network" it is a simple thing, use Net::Ping. However If you need more info about the OS or a process/application, things get a little more tricky, but nothing that can't be tackled without a little effort. :)

Update: I found this link which you may find interesting A Networked Machine Management System

-----
Of all the things I've lost in my life, its my mind I miss the most.

In reply to Re: Using Linux - To Gather info about NT Service by AcidHawk
in thread Using Linux - To Gather info about NT Service by gbrown@gdbrown.net

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.