mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
9 lines
280 B
YAML
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'
|
|
```
|