Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelGRA committed Dec 4, 2017
2 parents 804c1be + bf833f2 commit 1ae22ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.5.0
* Added support for more primitive types #23
* Added support for (optional) gzip during write operation #24

## 3.4.1
* Added documentation for IHaveMeasurementNname
* Added NamedDynamicInfluxRow that implement IHaveMeasurementName
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class ComputerInfo
On your POCO class you must specify these things:
* 1 property with the type DateTime, DateTime?, DateTimeOffset or DateTimeOffset? as the timestamp used in InfluxDB by adding the [InfluxTimestamp] attribute.
* 0-* properties with the type string or a user-defined enum (nullables too) with the [InfluxTag] attribute that InfluxDB will use as indexed tags.
* 1-* properties with the type string, long, double, bool, DateTime or a user-defined enum (nullables too) with the [InfluxField] attribute that InfluxDB will use as fields.
* 1-* properties with the type string, long, ulong, int, uint, short, ushort, byte, sbyte, double, float, bool, DateTime or a user-defined enum (nullables too) with the [InfluxField] attribute that InfluxDB will use as fields.

Once you've defined your class, you're ready to use the InfluxClient, which is the main entry point to the API:

Expand Down

0 comments on commit 1ae22ce

Please sign in to comment.