geLoadNextProbe
geLoadNextProbe( [w_window] [p_port] [s_prop] [s_cond] [g_value] [s_loadCount] ) => t / nil
Description
Loads a probe into a window. Identical to geLoadProbe except that s_loadCount is a symbol containing the index of the probe to be loaded.
s_loadCount is incremental if successful.
Arguments
Value Returned
Examples
Loads the first probe in file /tmp/myProbes.out that has the user-defined property myProp equal to the string critical, then increments ct to 1.
m = infile( "/tmp/myProbes.out" )
ct = 0
geLoadNextProbe( window(3) m ’myProp ’equal "critical" ’ct)
Related Topics
Return to top