Table of Contents
hostsseen
Table of Contents
Prototype: hostsseen(horizon, seen, field)
Return type: slist
Description: Returns a list with the information field
of hosts that were
seen or not seen within the last horizon
hours up to lastseenexpireafter
.
Finds a list of hosts seen by a CFEngine remote connection on the current host
within the number of hours specified in horizon
. The argument seen
may be
lastseen or notseen, the latter selecting all hosts not observed to have
connected within the specified time.
Arguments:
horizon
:int
, in the range:0,99999999999
seen
: one oflastseen
notseen
field
: one ofname
address
Example:
bundle agent test
{
vars:
"myhosts" slist => { hostsseen("inf","lastseen","address") };
reports:
"Found client/peer: $(myhosts)";
}