Blame

41e02a David Marsh 2026-04-24 06:36:48
1
# InfluxDB
2
3
## nuke all the data
4
5
```
6
sudo influx delete --bucket meshcore --org sydmesh --start 1970-01-01T00:00:00Z --stop 2100-01-01T00:00:00Z
7
```
8
## query data
9
10
```
11
sudo influx query --org sydmesh 'from(bucket:"meshcore") |> range(start:-1h) |> limit(n:5)'
12
```