0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

InfluxDBで遅行指標を作る

Last updated at Posted at 2021-01-24

これで、24時間前までの計算を終えた範囲を24時間先にずらすことで遅行指標として表示できる。
rangeのstop: -24hを消すと、24時間分、このグラフが先行して表示されるので、見栄えが悪い。

from(bucket: "XYZBucket")
  |> range(start: v.timeRangeStart, stop: -24h)
  |> timeShift(duration: 24h)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?