You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[InfluxDB](http://influxdb.com) is new awesome open source time series database. But there is no official .Net client model for it. This is a feature rich .Net client for InfluxDB. All methods are exposed as Async methods, so that the calling thread will not be blocked.
3
+
It currently supports
4
+
5
+
1. Connecting using credentials
6
+
2. Querying all existing databases
7
+
3. Creating new database
8
+
4. Querying for the whole DB structure (hierarchical structure of all measurements, and fields)
9
+
5. Writing single, multiple values to db
10
+
11
+
To be added are
12
+
13
+
a. Query for all tags, their unique values
14
+
b. Updating retention policies
15
+
c. Deleting data
16
+
17
+
###Usage
18
+
####Creating Client
19
+
`InfluxDBClient client = new InfluxDBClient (influxUrl, dbUName, dbpwd);`
0 commit comments