#! META name: a-little-test-script description: testing type: monitoring monitoring_interval: 30 seconds requires: vendor: checkpoint #! COMMENTS failed-logins: skip-documentation #! REMOTE::SSH echo "foo" #! PARSER::AWK BEGIN { for (i = 1; i < 4; i++) { writeDynamicVariable("myarr", "val" i) } } #! REMOTE::SSH echo "bar" #! PARSER::AWK BEGIN { theArr = dynamic("myarr") debug("** length: " length(theArr)) writeComplexMetricString("dummy-metric", null, theArr) for (key in theArr) { debug(theArr[key]) } }