From 38afc0389367d2db7f80da569c45bd8b8e88a079 Mon Sep 17 00:00:00 2001 From: Jin Wook Kim Date: Thu, 28 Jul 2016 11:29:36 +0900 Subject: [PATCH] Data types I wanted to know supported data types of influxDB. I know it's in docs, but this might help too!! --- examples/tutorial.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/tutorial.py b/examples/tutorial.py index 64e95778..e790ece5 100644 --- a/examples/tutorial.py +++ b/examples/tutorial.py @@ -19,7 +19,10 @@ def main(host='localhost', port=8086): }, "time": "2009-11-10T23:00:00Z", "fields": { - "value": 0.64 + "Float_value": 0.64, + "Int_value": 3, + "String_value": "Text", + "Bool_value": True } } ]