influxdb

package
v0.0.0-...-3cdd1f1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 25, 2021 License: EUPL-1.2 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	BooleanField    = "bool"
	DataField       = "data"
	StringField     = "string"
	SumField        = "sum"
	ValueField      = "value"
	UpdateTimeField = "update_time"
	HostTag         = "host"
	NameTag         = "name"
	UnitTag         = "unit"
	TimeField       = "time"
)

InfluxDB tag and field values.

Variables

This section is empty.

Functions

func NewPoint

func NewPoint(name, host string, measurement senml.Measurement) (*influxdb.Point, error)

NewPoint returns an InfluxDB point for a SenML measurement.

func NewSenML

func NewSenML(row *models.Row) (m []senml.Measurement, err error)

NewSenML creates a new JSONPoint from an InfluxDB row

func PointsFromSenML

func PointsFromSenML(name, host string, list []senml.Measurement) (pts []*influxdb.Point, err error)

PointsFromSenML creates a list of InfluxDB points from a list of SenML measurements.

Types

type Client

type Client struct {
	client.Client
	Database string
	// contains filtered or unexported fields
}

Client is an extended InfluxDB client

func NewClient

func NewClient(config *ClientConfig) (c *Client, err error)

NewClient returns a Client for the given configuration

func (*Client) Query

func (c *Client) Query(q client.Query) (res []client.Result, err error)

Query executes a query and returns the result

func (*Client) SenMLQuery

func (c *Client) SenMLQuery(name, host string, from, to time.Time, last bool) (measurements []senml.Measurement, err error)

SenMLQuery builds a query based on the given parameters and returns the result as SenML.

func (*Client) WritePoints

func (c *Client) WritePoints(rp string, points ...*client.Point) error

WritePoints writes a series of points to InfluxDB.

func (*Client) WriteSenML

func (c *Client) WriteSenML(name, host, rp string, data ...senml.Measurement) error

WriteSenML writes a series of SenML measurements to InfluxDB.

type ClientConfig

type ClientConfig struct {
	Host, Database, Username, Password string
}

ClientConfig contains InfluxDB client configuration

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL