Hi!
I’m currently modifying a rule to add the software version to the alert header.
I’ve figured out how I can find the software version using
val osInfo = SelectTagsExpression(context.metaDao, Set(“os.name”, “os.version”), True)
I do not however know how to present this in a string. I want to add it to the scopableStringFormatExpression.
scopableStringFormatExpression(“The end of support for the software on this device is on %s - %s.”, doubleToDateExpression(actualValue), osInfo),
Not sure however to extract the actual information from the Expression