in reply to help with data structure to use and how to implement it

Hi,

IMHO you're on the right direction: Just add another hashref indirection and you're done:

my %REPORT = ( 'Server1' => { 'network_interface' => 1, 'diskspace' => 2, }, );

You should get the idea.

Best regards
McA

Replies are listed 'Best First'.
Re^2: help with data structure to use and how to implement it
by Anonymous Monk on Sep 25, 2014 at 04:40 UTC

    Thanks a lot guys that's perfect. That's exactly how to do it. Been scratching my head for a while trying to work out the best data structure to hold this data in