Source relavance problem

hey,

ill try to do this relevance

(id of it, source of it) of bes fixlets whose ((creation time of it >= (now - 7*day)) and ((master site flag of it) or (custom site flag of it)))

and i got this error:
image

i think its because i get a fixlets and group
it can be to get only fixlet, or fix this relevance?

‘master site flag’ & ‘custom site flag’ are properties of sites not fixlets.

See
https://developer.bigfix.com/relevance/reference/bes-fixlet.html
https://developer.bigfix.com/relevance/reference/bes-site.html

You need to create your list using the 'fixlets of ’ construct.

2 Likes

So, ‘master site flag’ actually is a property of the bes fixlet object as well :slight_smile: (see https://developer.bigfix.com/relevance/reference/bes-fixlet.html#master-site-flag-of-bes-fixlet-boolean or https://developer.bigfix.com/relevance/search/?query=master%20site%20flag)

I’m guessing the problem here may that some of the Fixlets do not have a defined source of <bes fixlet>. Try:

(id of it, source of it | "n/a") of bes fixlets whose (creation time of it >= (now - 7 * day) AND (master site flag of it OR custom site flag of it))

1 Like

Thanks Aram, I’d not noticed that fixlets have that property.
In fact, I’m slightly bemused that a property of the owning site should also be a property of the fixlets within it.

1 Like

TNX ATAM!!:):slight_smile: