influxdb-client-csharp

C# - 图1

CircleCI codecov Nuget License GitHub issues GitHub pull requests Slack Status

This repository contains the C# client library for use with InfluxDB 2.x and Flux. InfluxDB 3.x users should instead use the lightweight v3 client library. InfluxDB 1.x users should use the v1 client library.

For ease of migration and a consistent query and write experience, v2 users should consider using InfluxQL and the v1 client library.

Documentation

C# - 图9

This section contains links to the client library documentation.

ClientDescriptionDocumentationCompatibility
ClientThe reference C# client that allows query, write and InfluxDB 2.x management.readme2.x
Client.LinqThe library supports to use a LINQ expression to query the InfluxDB.readme2.x
Client.LegacyThe reference C# client that allows you to perform Flux queries against InfluxDB 1.7+.readme1.7+

Features

C# - 图10

  • Supports querying using the Flux language over the InfluxDB 1.7+ REST API (/api/v2/query endpoint)
  • InfluxDB 2.x client
    • Querying data using the Flux language
    • Writing data using
    • InfluxDB 2.x Management API client for managing
      • sources, buckets
      • tasks
      • authorizations
      • health check

How To Use

C# - 图11

Writes and Queries in InfluxDB 2.x

C# - 图12

The following example demonstrates how to write data to InfluxDB 2.x and read them back using the Flux language:

Installation

C# - 图13

Use the latest version:

.Net CLI

C# - 图14

  1. dotnet add package InfluxDB.Client
Or when using Package Manager

C# - 图15

  1. Install-Package InfluxDB.Client
  1. using System;
  2. using InfluxDB.Client;
  3. using InfluxDB.Client.Api.Domain;
  4. using InfluxDB.Client.Core;
  5. using InfluxDB.Client.Writes;
  6. using Task = System.Threading.Tasks.Task;
  7. namespace Examples
  8. {
  9. public static class QueriesWritesExample
  10. {
  11. private static readonly char[] Token = "".ToCharArray();
  12. public static async Task Main()
  13. {
  14. using var client = new InfluxDBClient("http://localhost:8086", Token);
  15. //
  16. // Write Data
  17. //
  18. using (var writeApi = client.GetWriteApi())
  19. {
  20. //
  21. // Write by Point
  22. //
  23. var point = PointData.Measurement("temperature")
  24. .Tag("location", "west")
  25. .Field("value", 55D)
  26. .Timestamp(DateTime.UtcNow.AddSeconds(-10), WritePrecision.Ns);
  27. writeApi.WritePoint(point, "bucket_name", "org_id");
  28. //
  29. // Write by LineProtocol
  30. //
  31. writeApi.WriteRecord("temperature,location=north value=60.0", WritePrecision.Ns, "bucket_name", "org_id");
  32. //
  33. // Write by POCO
  34. //
  35. var temperature = new Temperature {Location = "south", Value = 62D, Time = DateTime.UtcNow};
  36. writeApi.WriteMeasurement(temperature, WritePrecision.Ns, "bucket_name", "org_id");
  37. }
  38. //
  39. // Query data
  40. //
  41. var flux = "from(bucket:\"temperature-sensors\") |> range(start: 0)";
  42. var fluxTables = await influxDBClient.GetQueryApi().QueryAsync(flux, "org_id");
  43. fluxTables.ForEach(fluxTable =>
  44. {
  45. var fluxRecords = fluxTable.Records;
  46. fluxRecords.ForEach(fluxRecord =>
  47. {
  48. Console.WriteLine($"{fluxRecord.GetTime()}: {fluxRecord.GetValue()}");
  49. });
  50. });
  51. }
  52. [Measurement("temperature")]
  53. private class Temperature
  54. {
  55. [Column("location", IsTag = true)] public string? Location { get; set; }
  56. [Column("value")] public double Value { get; set; }
  57. [Column(IsTimestamp = true)] public DateTime Time { get; set; }
  58. }
  59. }
  60. }

Use Management API to create a new Bucket in InfluxDB 2.x

C# - 图16

The following example demonstrates how to use a InfluxDB 2.x Management API. For further information see client documentation.

Installation

C# - 图17

Use the latest version:

.Net CLI

C# - 图18

  1. dotnet add package InfluxDB.Client
Or when using Package Manager

C# - 图19

  1. Install-Package InfluxDB.Client
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using InfluxDB.Client;
  5. using InfluxDB.Client.Api.Domain;
  6. using Task = System.Threading.Tasks.Task;
  7. namespace Examples
  8. {
  9. public static class ManagementExample
  10. {
  11. public static async Task Main()
  12. {
  13. const string url = "http://localhost:8086";
  14. const string token = "my-token";
  15. const string org = "my-org";
  16. using var client = new InfluxDBClient(url, token);
  17. // Find ID of Organization with specified name (PermissionAPI requires ID of Organization).
  18. var orgId = (await client.GetOrganizationsApi().FindOrganizationsAsync(org: org)).First().Id;
  19. //
  20. // Create bucket "iot_bucket" with data retention set to 3,600 seconds
  21. //
  22. var retention = new BucketRetentionRules(BucketRetentionRules.TypeEnum.Expire, 3600);
  23. var bucket = await client.GetBucketsApi().CreateBucketAsync("iot_bucket", retention, orgId);
  24. //
  25. // Create access token to "iot_bucket"
  26. //
  27. var resource = new PermissionResource(PermissionResource.TypeEnum.Buckets, bucket.Id, null,
  28. orgId);
  29. // Read permission
  30. var read = new Permission(Permission.ActionEnum.Read, resource);
  31. // Write permission
  32. var write = new Permission(Permission.ActionEnum.Write, resource);
  33. var authorization = await client.GetAuthorizationsApi()
  34. .CreateAuthorizationAsync(orgId, new List<Permission> { read, write });
  35. //
  36. // Created token that can be use for writes to "iot_bucket"
  37. //
  38. Console.WriteLine($"Authorized token to write into iot_bucket: {authorization.Token}");
  39. }
  40. }
  41. }

InfluxDB 1.8 API compatibility

C# - 图20

InfluxDB 1.8.0 introduced forward compatibility APIs for InfluxDB 2.x. This allow you to easily move from InfluxDB 1.x to InfluxDB 2.x Cloud or open source.

The following forward compatible APIs are available:

APIEndpointDescription
QueryApi.cs/api/v2/queryQuery data in InfluxDB 1.8.0+ using the InfluxDB 2.x API and Flux (endpoint should be enabled by flux-enabled option)
WriteApi.cs/api/v2/writeWrite data to InfluxDB 1.8.0+ using the InfluxDB 2.x API
PingAsync/pingChecks the status of InfluxDB instance and version of InfluxDB.

For detail info see InfluxDB 1.8 example.

Flux queries in InfluxDB 1.7+

C# - 图21

The following example demonstrates querying using the Flux language.

Installation

C# - 图22

Use the latest version:

.Net CLI

C# - 图23

  1. dotnet add package InfluxDB.Client.Flux
Or when using Package Manager

C# - 图24

  1. Install-Package InfluxDB.Client.Flux
  1. using System;
  2. using InfluxDB.Client.Flux;
  3. namespace Examples
  4. {
  5. public static class FluxExample
  6. {
  7. public static void Run()
  8. {
  9. using var client = new FluxClient("http://localhost:8086/");
  10. var fluxQuery = "from(bucket: \"telegraf\")\n"
  11. + " |> filter(fn: (r) => (r[\"_measurement\"] == \"cpu\" AND r[\"_field\"] == \"usage_system\"))"
  12. + " |> range(start: -1d)"
  13. + " |> sample(n: 5, pos: 1)";
  14. client.QueryAsync(fluxQuery, record =>
  15. {
  16. // process the flux query records
  17. Console.WriteLine(record.GetTime() + ": " + record.GetValue());
  18. },
  19. (error) =>
  20. {
  21. // error handling while processing result
  22. Console.WriteLine(error.ToString());
  23. }, () =>
  24. {
  25. // on complete
  26. Console.WriteLine("Query completed");
  27. }).GetAwaiter().GetResult();
  28. }
  29. }
  30. }

Contributing

C# - 图25

If you would like to contribute code you can do through GitHub by forking the repository and sending a pull request into the master branch.

License

C# - 图26

The InfluxDB 2.x Clients are released under the MIT License.