influxdb-client-csharp
influxdb-client-csharp copied to clipboard
InfluxDB 2.x C# Client
I tried to filter the "_value" with contains but it did not work. I'll take a look into this. Et least I try to support: ToLower ToUpper Contains StartsWith EndsWith
Today i've come accross with the issue writing points to Influx Cloud using 4.10.0 & 4.11.0 (InfluxDB.Client & InfluxDB.Client.Core). We were using 4.6.0 before the upgrade - **_everything is working...
__Proposal:__ According to the docs, WriteApi supports batching. If I understand correctly, there is something like an internal queue to send data to server in batches. An application is actively...
__Proposal:__ The InfluxDb Docs talk about a `offset` parameter being available in the "[aggregateWindow](https://github.com/influxdata/influxdb-client-csharp/tree/master/Client.Linq#aggregatewindow)" function. Right here: Which I would like to use for proper week aggregation, but it seems...
// tried feature request and it didn't work, I swear! __Proposal:__ Line out best practices in the documentation how to efficiently write to InfluxDB using the C# SDK __Current behavior:__...
__Steps to reproduce:__ List the minimal actions needed to reproduce the behavior. var client = new InfluxDL(null); var influxDBQuery = client.Query(); var query = from s in influxDBQuery where s.Timestamp...
I currently have three instances of a console application running, which collects different sensor data and sends it to an InfluxDB database. So far this works quite well. Now I...
__Proposal:__ .NET libraries are moving towards using [Nullable reference types](https://learn.microsoft.com/en-us/dotnet/csharp/nullable-references). Are you planning to add them to InfluxDB client. __Current behavior:__ No nullable annotations in the libraries. __Desired behavior:__ Nullable...
__Proposal:__ Add [XML documentation](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/) to all types, methods, etc. __Current behavior:__ No XML documentation in the libraries. __Desired behavior:__ All APIs, classes, etc. should be annotated with XML documentation comments.
__Proposal/Current behavior:__ Current `IQueryApi` doesn't allow for streaming raw results, i.e., results of type `FluxRecord` or `string`. __Desired behavior:__ ```csharp IAsyncEnumerable QueryAsyncEnumerable(string query, string org = null, CancellationToken cancellationToken =...