show_databases {influxdbr}R Documentation

Influx schema exploration

Description

The folllowing functions are convenient wrappers around influx_query.

Usage

show_databases(con)

show_measurements(con, db, where = NULL)

show_series(con, db, measurement = NULL, where = NULL)

show_tag_keys(con, db, measurement = NULL)

show_tag_values(con, db, measurement = NULL, key)

show_field_keys(con, db, measurement = NULL)

show_retention_policies(con, db)

Arguments

con

An influx_connection object (s. influx_connection).

db

Sets the target database for the query.

where

Apply filter on tag key values.

measurement

Query a specific measurement.

key

The key to be queried.

Value

A tibble containing query results.

References

https://docs.influxdata.com/influxdb/

See Also

influx_connection


[Package influxdbr version 0.14.2 Index]