fleet/schema/tables/uptime.yml
Eric 02d29759a2
Schema: fix example queries (#19426)
Changes:
- Fixed schema examples that were mistakenly updated in #19296
2024-05-31 15:42:06 -05:00

9 lines
280 B
YAML

name: uptime
examples: |-
See how long hosts that have been up for more than a month have been up. This
could indicate systems that are not ephemeral as expected, or not being
patched as frequently as they should be.
```
SELECT days FROM uptime WHERE days >='31'
```