• InfluxDB3.Client API
Show / Hide Table of Contents
  • InfluxDB3.Client
    • IInfluxDBClient
    • InfluxDBApiException
    • InfluxDBClient
  • InfluxDB3.Client.Config
    • ClientConfig
    • QueryOptions
    • WriteOptions
  • InfluxDB3.Client.Internal
    • TypeCasting
  • InfluxDB3.Client.Query
    • QueryType
  • InfluxDB3.Client.Write
    • PointData
    • PointDataValues
    • WritePrecision

Class WriteOptions

The WriteOptions class holds the configuration for writing data to InfluxDB.

You can configure following options:

  • Precision: The default precision to use for the timestamp of points if no precision is specified in the write API call.
  • GzipThreshold: The threshold in bytes for gzipping the body. The default value is 1000.

If you want create client with custom options, you can use the following code:

using var client = new InfluxDBClient(new ClientConfig
{
    Host = "https://us-east-1-1.aws.cloud2.influxdata.com",
    Token = "my-token",
    Organization = "my-org",
    Database = "my-database",
    WriteOptions = new WriteOptions
    {
        Precision = WritePrecision.S,
        GzipThreshold = 4096
    }
});
Inheritance
object
WriteOptions
Implements
ICloneable
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: InfluxDB3.Client.Config
Assembly: InfluxDB3.Client.dll
Syntax
public class WriteOptions : ICloneable

Properties

DefaultTags

Tags added to each point during writing. If a point already has a tag with the same key, it is left unchanged.

var _client = new InfluxDBClient(new InfluxDBClientConfigs
{
HostUrl = "some-url",
Organization = "org",
Database = "database",
DefaultTags = new Dictionary <string, string ()
{
{ "rack", "main" },
}
});

     // Writes with rack=main tag
     await _client.WritePointAsync(PointData
         .Measurement("cpu")
         .SetField("field", 1)
     );</code></pre></example>
Declaration
public Dictionary<string, string>? DefaultTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

GzipThreshold

The threshold in bytes for gzipping the body.

Declaration
public int GzipThreshold { get; set; }
Property Value
Type Description
int

Precision

The default precision to use for the timestamp of points if no precision is specified in the write API call.

Declaration
public WritePrecision? Precision { get; set; }
Property Value
Type Description
WritePrecision?

Methods

Clone()

Creates a new object that is a copy of the current instance.

Declaration
public object Clone()
Returns
Type Description
object

A new object that is a copy of this instance.

Implements

ICloneable
In this article
Back to top Generated by DocFX