44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
|
import requests
|
||
|
from datetime import datetime, timezone
|
||
|
from influxdb import InfluxDBClient
|
||
|
|
||
|
# noinspection PyUnresolvedReferences
|
||
|
from requests.packages.urllib3.exceptions import InsecureRequestWarning
|
||
|
# noinspection PyUnresolvedReferences
|
||
|
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
|
||
|
|
||
|
current_time = datetime.now(timezone.utc).astimezone().isoformat()
|
||
|
|
||
|
api_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxx'
|
||
|
headers = {'X-Api-Key': api_key}
|
||
|
get_tv_shows = requests.get('https://sonarr.domain.tld/api/wanted/missing/?pageSize=1000',
|
||
|
headers=headers).json()['records']
|
||
|
tv_shows = {d['id']: d for d in get_tv_shows}
|
||
|
missing = []
|
||
|
influx_payload = []
|
||
|
|
||
|
for show in tv_shows.keys():
|
||
|
name = '{} - S{}E{}'.format(tv_shows[show]['series']['title'], tv_shows[show]['seasonNumber'],
|
||
|
tv_shows[show]['episodeNumber'])
|
||
|
missing.append((name, tv_shows[show]['id']))
|
||
|
|
||
|
for show, id in missing:
|
||
|
influx_payload.append(
|
||
|
{
|
||
|
"measurement": "Plex",
|
||
|
"tags": {
|
||
|
"server": "Sonarr",
|
||
|
"type": "Missing",
|
||
|
"sonarrId": id
|
||
|
},
|
||
|
"time": current_time,
|
||
|
"fields": {
|
||
|
"name": show
|
||
|
}
|
||
|
}
|
||
|
)
|
||
|
|
||
|
influx = InfluxDBClient('grafana.domain.tld', 8086, 'root', 'root', 'plex')
|
||
|
influx.write_points(influx_payload)
|
||
|
|