# Functions
DefaultOptions returns Options object with default values.
NewPoint creates a Point from measurement name, tags, fields and a timestamp.
NewPointWithMeasurement creates a empty Point Use AddTag and AddField to fill point with data.
PointToLineProtocol creates InfluxDB line protocol string from the Point, converting associated timestamp according to precision.
PointToLineProtocolBuffer creates InfluxDB line protocol string from the Point, converting associated timestamp according to precision and write result to the string builder.
# Constants
ConsistencyAll requires all data nodes to acknowledge a write.
ConsistencyAny allows for hinted hand off, potentially no write happened yet.
ConsistencyOne requires at least one data node acknowledged a write.
ConsistencyQuorum requires a quorum of data nodes to acknowledge a write.
# Type aliases
Consistency defines enum for allows consistency values for InfluxDB Enterprise, as explained https://docs.influxdata.com/enterprise_influxdb/v1.9/concepts/clustering/#write-consistency.