(imported topic written by sigelab91)
I need to identify which nodes have had actions deployed to them within a cetain time period.
Does anyone have any information/examples on anything like this?
Thanks.
(imported topic written by sigelab91)
I need to identify which nodes have had actions deployed to them within a cetain time period.
Does anyone have any information/examples on anything like this?
Thanks.
(imported comment written by Doug_Coburn)
If you create a custom report with the following code it will return the Computer Name, Issued Time, and Action name for any actions in the last 5 days. It might take a while to load in a large deployment.
Computer Name | Issued Time | Action Name | <?relevance trs of (td of (concatenation ", " of names of targeted computers of it) & td of (time issued of it as string) & td of (names of it as string)) of bes actions whose (time issued of it > (now - 5*day)) ?>
---|
Is this what you were looking for?
Also for more information on how to add things such as sortable columns this topic
http://forum.bigfix.com/viewtopic.php?id=212
has some good infomration.
Doug
(imported comment written by jessewk)
Is this more what you are looking for? Change the part (now - 60 * day) to edit how many days back it goes.
<?relevance unordered list of links of items 0 of it whose (id of item 0 of it = item 1 of it) of (bes computers, (unique values of ids of computers of results whose (status of it as string = "Fixed" OR status of it as string = "Failed" OR status of it as string = "Pending Restart" OR status of it as string = "Running") of bes actions whose (time issued of it >= now - 60 * day))) ?>Edited to change <= to >=.