Help for this page

Select Code to Download


  1. or download this
        foreach( @{$result->MetricAlarms} ){
    
    ...
            print Dumper($_);
        }
        print "\n***\n--number of elements: ", scalar @{$result->MetricAla
    +rms}, "\n";
    
  2. or download this
    my $ar_ref = $result->MetricAlarms;
    foreach( @$ar_ref ){
    ...