diff options
author | Rasmus Luha <rasmus.luha@ut.ee> | 2025-04-29 00:25:22 +0300 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@ut.ee> | 2025-04-29 00:25:22 +0300 |
commit | b2e8ec86abe8089ed5fbd1655677889b6691397f (patch) | |
tree | 0982990ad217e4537e1005dbd20c63d758facc17 /config.py | |
parent | 6b3c096f6efea8855772c7faffa90f71861290bd (diff) |
add cml variables, and platform option to config
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -1,4 +1,5 @@ -INTERACTIVE_MODE=False +INTERACTIVE_MODE=True +#PLATFORM="Nifiaskdjas" #### Nifi #### @@ -16,15 +17,18 @@ DB_URL="http://influxdb:8086/write?db=nifi_weatherData" DB_USER="admin" DB_PASS="admin" +#### Telegraf #### + +#TBA + + + +#### Over all #### ## Needed if Interactive mode turned off API_URL="https://api.open-meteo.com/v1/forecast?latitude=58.38&longitude=26.72¤t_weather=true" API_FIELDS={'temperature': '.current_weather.temperature', 'windspeed': '.current_weather.windspeed'} API_USERNAME="Placeholder" API_PASSWORD="Placehoder" -PIPELINE_SCHEDULING_PERIOD="5 sec" +PIPELINE_SCHEDULING_PERIOD="10 sec" PIPELINE_NAME="test_pipeline" - - - -#### Telegraf #### |