-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_local_keys.py
32 lines (26 loc) · 1.16 KB
/
update_local_keys.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import os
import requests
from datetime import datetime
import logging
from utils.thingsboard_api import get_jwt_token, get_telemetry_keys
from utils.config_files import load_json_config, add_missing_telemetry_keys
from utils.paths import LOG_DIR
# Create a log filename with the current date (YYYY-MM-DD)
log_filename = os.path.join(LOG_DIR,
f"{datetime.now().strftime('%Y-%m-%d')}.log")
logging.basicConfig(filename=log_filename,
level=logging.INFO,
format="%(asctime)s - %(levelname)s - %(message)s")
# config
devices = load_json_config("config.json")["devices"]
# Create a persistent session.
with requests.Session() as session:
# Retrieve the JWT token using the session.
jwt_token: str = get_jwt_token(session=session)
for device in devices.keys():
# Get all device specific telemetry keys from ThingsBoard
keys = get_telemetry_keys(jwt_token,
str(devices.get(device)),
session=session)
# Compares local and remote keys and add missing keys to the config file
add_missing_telemetry_keys(keys)