Hi community,
I am looking for best practices (and example detections) to monitor application version drift…..
What i needed ?
-
Alert when devices are not on the expected/current version after a rollout.
-
Alert when a device rolls back to a lower version (intentional or suspicious)as
Questions
-
Flag “version != expected_version”
-
Flag “version < expected_version” (rollback)
I want to be able to alert when devices are not on the expected or current version after a rollout, and also when a device rolls back to a lower version, whether intentional or suspicious. What is the recommended detection pattern to flag version != expected_version
and to flag version < expected_version
for rollback? Are there any gotchas with handling semantic versions, for example comparing 1.10.3
with 1.9.12
?