Skip to content

CarlsonBuma/zhaw-2-tinyflux

 
 

Repository files navigation

Zeitreihen Datenspeicher

  • Measurement: TABLE (STRING)
  • Point: Record => Row / Entry
  • Attributes:
    • time: datetime => ID
    • tags: object
    • fields: object

Example Create

p1 = Point( measurement="city temperatures", time=datetime(2022, 1, 1, tzinfo=timezone.utc), tags={"city": "Greenwich", "country": "England"}, fields={"high": 52.0, "low": 41.0} )

Logic '&', '|', '~' (NOT), '=='

t1 = datetime(2010, 1, 1, tzinfo=timezone.utc) t2 = datetime(2020, 1, 1, tzinfo=timezone.utc) db.search((Time >= t1) & (Time < t2))

Unique Tags

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 68.9%
  • Jupyter Notebook 31.1%