Bigfix License Report

Hi, besides the license overview dashboard is there a way to get notified when the license expired by a report from the webreports using relevance or maybe its written somewhere so I can put it in a syslog system?

Thanks

A custom web report with something like the following definition would show any expired license entitlements:

<?relevance
(html "<table id=resultsTable class=sortable>" & html ("<th>Entitlement</th><th>Expiration Date</th>") & 
(it) & html "</table>"

) of concatenations of trs of (

(td of (name of it as string) & td of (expiration date of it as string)) of products whose (current date > expiration date of it) of bes licenses

)
?>

You could then have a Scheduled Activity in Web Reports send out a notification email should there be an expired license entitlement with the following trigger:

  • Match relevance conditions (generate report when relevance becomes true):

exists products whose (current date > expiration date of it) of bes licenses

Alternatively, you could also use these Session Relevance samples via the REST API’s /query resource.

3 Likes