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

Bumps [Tomlyn.Signed](https://github.com/xoofx/Tomlyn) from 0.15.0 to 0.15.1. Release notes Sourced from Tomlyn.Signed's releases. 0.15.1 Changes 🐛 Bug Fixes Fix: IgnoreMissingProperties should ignore objects (PR #44) by @​bacongobbler Full Changelog: 0.15.0...0.15.1 Published...

dependencies

In the `C#` world is not common to use builder patter for initialization: ```c# var options = new InfluxDBClientOptions.Builder() .Url("http://localhost:8086") .AuthenticateToken("my-token") .TimeOut(TimeSpan.FromSeconds(30)) .Build(); using var client = InfluxDBClientFactory.Create(options); ``` instead...

__Steps to reproduce:__ 1. Write data in loop 2. Take down InfluxDB 3. Observe large duration of WriteApi#Write __Expected behavior:__ Even if InfluxDB is down, the Synchronous API doesn't block...

question

## Proposed Changes Change WriteApi to use IEnumerable for collection arguments instead of List. Change `WriteRecords(List records)` to `WriteRecords(IEnumerable records)` Calling ToList on a collection will incur a memory allocation...

## Proposed Changes ### Features - Complete rework of the CI pipeline to build with the latest .NET SDK and support C# 12: - The .NET solution is now built...

## Proposed Changes ### Features - Add nanosecond precision support to the `DateTimeLiteral` AST type (thanks to NodaTime's `Instant`). - Add support in LINQ queries for: - NodaTime's `Instant`, `ZonedDateTime`,...

__Proposal:__ Add offset to CreateThresholdCheckAsync and CreateDeadmanCheckAsync for alerting __Current behavior:__ Unable to set offset time when using CreateThresholdCheckAsync and CreateDeadmanCheckAsync methods __Desired behavior:__ Pass in optional offset time with...

__Steps to reproduce:__ 1. Set up measurement table with auto props with inline default values 2. Write query by POCO 3. Error __Expected behavior:__ Able to write to measurement __Actual...

I am using the following F# code to write ``` let write org bucket (callback: SeriesWriteEvent -> unit) (options: WriteOptions) (points: PointData array) = log.Information("Writing {0} points in bucket {Organization}/{Bucket}",...

__Proposal:__ Hi, I have a multi-threading program that contain 80,000 field, the data changed ~10ms. Is there any efficient method to write that amount of data to a local Influx...