Influxdb2 #2

Merged
d_mcknight merged 11 commits from github/fork/gcrevell/influxdb2 into influxdb2 2023-06-22 21:07:06 -07:00
Showing only changes of commit 59d6821a3a - Show all commits

View file

@ -20,6 +20,16 @@ class InfluxServer(NamedTuple):
verify_ssl: bool = False
class Influx2Server(NamedTuple):
url: str = 'localhost'
org: str = 'server'
token: str = 'TOKEN'
bucket: str = 'varken'
timeout: int = 10000
ssl: bool = False
verify_ssl: bool = False
class SonarrServer(NamedTuple):
api_key: str = None
future_days: int = 0