blob: 3c1334f9c7359233959a825839e0486e01641bf7 [file] [log] [blame]
{
select: {
health: "INSPECT:timezone.cmx:root/fuchsia.inspect.Health:status",
},
eval: {
not_healthy: "health != 'OK'",
},
act: {
no_timezone: {
type: "Warning",
trigger: "not_healthy",
print: "Device does not have a set timezone",
},
},
test: {
is_healthy: {
yes: [],
no: [
"no_timezone",
],
inspect: [
{
path: "timezone.cmx",
contents: {
root: {
"fuchsia.inspect.Health": {
start_timestamp_nanos: 17453421103,
status: "OK",
},
},
},
},
],
},
is_not_healthy: {
yes: [
"no_timezone",
],
no: [],
inspect: [
{
path: "timezone.cmx",
contents: {
root: {
"fuchsia.inspect.Health": {
start_timestamp_nanos: 17453421103,
status: "UNHEALTHY",
},
},
},
},
],
},
},
}