Alert if analysis change

Hey,

I created an analysis,
I want to be notified if there has been a change on one of properties result, and send to me mail about the change.

I was see this in WebReport:
But I’m don’t understand how to use it for my goal.
image

Thanks in advance :slight_smile:

Your close. I would refrain from using “Generate report on every refresh” and instead use “Generate report every 15 minutes” as it will have less overhead.

For your relevance clause, you want to replace “True” with something like

(id of computer of it, (concatenation ";" of values of it) | "") of results of bes properties whose (name of it = "IP Address")

Where you would replace “IP Address” with the property your actually interested in.

This will generate the alert whenever:

  • A new computer starts reporting a value
  • An existing computer starts reporting a different value
  • A computer is removed
3 Likes

Thanks you so so much!
you helped me!