mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
12 lines
281 B
YAML
12 lines
281 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'
|
||
|
|
||
|
```
|