InfluxEx.TableRow (influx_ex v0.3.1)

Rows for a response table

These are normally contained in a InfluxEx.tables() data structure and represents a single row in a table.

Link to this section Summary

Types

t()

Data structure for table row

Functions

Turn a single row of a table CSV into an InfluxEx.TableRow.t()

Link to this section Types

@type t() :: %InfluxEx.TableRow{
  field: binary(),
  measurement: InfluxEx.measurement(),
  result: binary(),
  tags: %{required(binary()) => binary()},
  time: binary(),
  value: term()
}

Data structure for table row

Link to this section Functions

Link to this function

from_csv_row(list, tag_names)

@spec from_csv_row([binary()], [binary()]) :: t()

Turn a single row of a table CSV into an InfluxEx.TableRow.t()