Sort and limit data with Flux

Use the sort()function to order records within each table by specific columns and the limit() function to limit the number of records in output tables to a fixed number, n.

If you’re just getting started with Flux queries, check out the following:

Example sorting system uptime

The following example orders system uptime first by region, then host, then value.

  1. from(bucket:"db/rp")
  2. |> range(start:-12h)
  3. |> filter(fn: (r) =>
  4. r._measurement == "system" and
  5. r._field == "uptime"
  6. )
  7. |> sort(columns:["region", "host", "_value"])

The limit() function limits the number of records in output tables to a fixed number, n. The following example shows up to 10 records from the past hour.

  1. from(bucket:"db/rp")
  2. |> range(start:-1h)
  3. |> limit(n:10)

You can use sort() and limit() together to show the top N records. The example below returns the 10 top system uptime values sorted first by region, then host, then value.

  1. from(bucket:"db/rp")
  2. |> range(start:-12h)
  3. |> filter(fn: (r) =>
  4. r._measurement == "system" and
  5. r._field == "uptime"
  6. )
  7. |> sort(columns:["region", "host", "_value"])
  8. |> limit(n:10)

You now have created a Flux query that sorts and limits data. Flux also provides the top() and bottom() functions to perform both of these functions at the same time.