influxdb-client-csharp icon indicating copy to clipboard operation
influxdb-client-csharp copied to clipboard

InfluxDB 2.x C# Client

Results 43 influxdb-client-csharp issues
Sort by recently updated
recently updated
newest added

Looking through the code of Client & Client.Linq, it appears that most of it is documented with XML comments. However, the .csproj files for these projects do not have `true`,...

I am attempting to write data to a bucket running in Influx OSS that is running inside docker (Macbook M2 Pro, Docker version: 24.0.5, Influx OSS Image Version: 2.7.1). The...

`FluxColumn` has a string property called `DataType`. What are the possible values this property can take? Is there a list, apart from the `DataType` doc? Some possible values make sense...

__Proposal:__ Adding support for querying very large data sets or adding a disclaimer about the capabilities of the stream Query function (like for the non-stream version). __Current behavior:__ Currently, when...

**Steps to reproduce:** I would like to write asyncronously a set of records using Line Protocol format. I'm working with a following dataset: measurement1,tag1="value1",tag2="value2" field1=110,field2=120,field3=130,field4=140 1673028005 measurement1,tag1="value1",tag2="value2" field1=210,field2=220,field3=230,field4=240 1673028010 measurement1,tag1="value1",tag2="value2"...

__Proposal:__ According to [this document](https://docs.influxdata.com/influxdb/v2.7/query-data/influxql/). The influxdb still supports the influx Query Language (QL). __Current behavior:__ Currently using a query which has QL syntax ends with error: `error @1:1-1:7: undefined...

__Steps to reproduce:__ Use version 4.11.0 and set a `BaseUrl`: `ApiClient.RestClient.BaseUrl = new Uri("http://some.url")` Upgrade to 4.12.0. The code no longer builds even though the version upgrade was minor. __Expected...

question

I have this specific error with linq: "System.NotSupportedException: 'The expression '[s].Node.Contains("0")', type: 'System.Linq.Expressions.MethodCallExpression' is not supported.'" this is the code: var query = (from s in InfluxDBQueryable.Queryable(BucketName, Organization, queryApiTest, memberResolver)...

i want prevent injection when read and wirte data my read query is like this: ``` var query = $"from(bucket:\"{_bucketName}\") " + $"|> {range[0]} " + $"|> filter(fn: (r) =>...

__Steps to reproduce:__ List the minimal actions needed to reproduce the behavior. 1. Singleton InfluxDBClient instance used for all writes. Single writeApi used for all calls throughout ``` client =...