Help for this page

Select Code to Download


  1. or download this
    @services = ( { serviceid => '1',
                    name      => 'servicea',
    ...
                    name      => 'serviceb',
                    host      => [ qw( hostc ) ] },
                 );
    
  2. or download this
    foreach my $svc ( @services ) {
        # list of hosts: @{ $svc->{host} }
        # name: $svc->{name}
    }
    
  3. or download this
    %services
        = ( 'servicea' => { serviceid => '1',
    ...
            'serviceb' => { serviceid => '2',
                            host      => [ qw( hostc ) ] },
          );