libinfluxdb-0.0.1: libinfluxdb

Safe HaskellNone
LanguageHaskell2010

Database.InfluxDB.Writer

Synopsis

Documentation

data Value Source

A Value is either an integer, a floating point number, a boolean or string.

Constructors

I !Int64 
F !Double 
B !Bool 
S !Text 

writePoint :: Handle -> Text -> Tags -> Fields -> IO () Source

Write a point to the database. Generates a timestamp from the local clock.

test :: IO () Source