文件名称:influxdb-csharp:一个用于InfluxDB的CSharp客户端,一个可扩展的开源时间序列,事件和指标数据库
文件大小:14KB
文件格式:ZIP
更新时间:2024-06-12 17:42:07
C#
influxdb-csharp 一个用于InfluxDB的CSharp客户端,这是一个可扩展的开源时间序列,事件和指标数据库。 项目状态 处于早期开发阶段,尚不适合使用。 当前仅支持查询和基本插入。 对于开发人员 用法 在您的项目中包括该库并创建一个实例。 using Influxdb ; ... var db = new InfluxDb ( " http://localhost:8086 " , " root " , " root " , " sampledatabase " ); 将一些数据插入时间序列。 db . WritePoints ( " weather_station " , new [] { " temperature " , " windspeed " }, new [] { " 11 " , " 8 " }); 或者 var data = new []
【文件预览】:
influxdb-csharp-master
----LICENSE(1KB)
----README.md(1KB)
----influxdb-csharp.sln(1KB)
----.gitignore(1KB)
----influxdb-csharp-example()
--------packages.config(146B)
--------Program.cs(2KB)
--------Properties()
--------influxdb-csharp-example.csproj(3KB)
----influxdb-csharp()
--------Database.cs(392B)
--------influxdb-csharp.csproj(3KB)
--------packages.config(149B)
--------Series.cs(498B)
--------Influxdb.cs(16KB)
--------Properties()
--------TimeSeriesContainer.cs(1KB)