diff --git a/coolify.md b/coolify.md new file mode 100644 index 0000000..8945229 --- /dev/null +++ b/coolify.md @@ -0,0 +1,7 @@ +# Coolify + +Coolify is a tool to help you manage your projects. It is a collection of scripts that help you to create, build, test, and deploy your projects. + +```bash +curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash +``` diff --git a/docker-compose/homarr/.env.example b/docker-compose/homarr/.env.example deleted file mode 100644 index fdc5cf4..0000000 --- a/docker-compose/homarr/.env.example +++ /dev/null @@ -1,4 +0,0 @@ -TZ= -PUID= -PGID= -PASSWORD= diff --git a/docker-compose/homarr/docker-compose.yml b/docker-compose/homarr/docker-compose.yml deleted file mode 100644 index e4c97df..0000000 --- a/docker-compose/homarr/docker-compose.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: "3.7" - -services: - homarr: - container_name: homarr - image: ghcr.io/ajnart/homarr:0.14.4 - restart: unless-stopped - volumes: - - ${DATA_DIR}/homarr/config:/app/data/configs - - ${DATA_DIR}/homarr/icons:/app/public/icons - - ${DATA_DIR}/homarr/dashboard:/data - - /var/run/docker.sock:/var/run/docker.sock - environment: - - PASSWORD=${PASSWORD} - - TZ=${TZ} - - PUID=${PUID} - - PGID=${PGID} - ports: - - 7575:7575 - networks: - - pegasus - -volumes: - homarr: - name: homarr - driver: local - -networks: - pegasus: - external: true diff --git a/docker-compose/homepage/.env.example b/docker-compose/homepage/.env.example new file mode 100755 index 0000000..416a800 --- /dev/null +++ b/docker-compose/homepage/.env.example @@ -0,0 +1 @@ +TZ=America/Sao_Paulo diff --git a/docker-compose/homarr/README.md b/docker-compose/homepage/README.md old mode 100644 new mode 100755 similarity index 100% rename from docker-compose/homarr/README.md rename to docker-compose/homepage/README.md diff --git a/docker-compose/homepage/docker-compose.yml b/docker-compose/homepage/docker-compose.yml new file mode 100755 index 0000000..068f471 --- /dev/null +++ b/docker-compose/homepage/docker-compose.yml @@ -0,0 +1,10 @@ +services: + homepage: + image: ghcr.io/gethomepage/homepage:latest + container_name: homepage + ports: + - 3000:3000 + volumes: + - ../../homepage:/app/config # Make sure your local config directory exists + - ../../homepage/images:/app/public/images + - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations diff --git a/docker-compose/ntfy/.env.example b/docker-compose/ntfy/.env.example new file mode 100644 index 0000000..a7d9d7f --- /dev/null +++ b/docker-compose/ntfy/.env.example @@ -0,0 +1,19 @@ +TZ=America/Sao_Paulo +PUID=1000 +PGID=1000 + +POSTGRES_HOST=nextcloud-postgres +POSTGRES_DB= +POSTGRES_USER= +POSTGRES_PASSWORD= +POSTGRES_IPV4_ADDRESS=172.27.1.3 + +NEXTCLOUD_TRUSTED_DOMAIN=ydooc.me 0.0.0.0 localhost +NEXTCLOUD_SUBNET=172.27.1.0/24 +NEXTCLOUD_IPV4_ADDRESS=172.27.1.2 + +REDIS_HOST=nextcloud-redis +#REDIS_HOST_PASSWORD= +#REDIS_IPV4_ADDRESS=172.27.1.4 + +CRON_IPV4_ADDRESS=172.27.1.5 diff --git a/docker-compose/ntfy/README.md b/docker-compose/ntfy/README.md new file mode 100644 index 0000000..1855c33 --- /dev/null +++ b/docker-compose/ntfy/README.md @@ -0,0 +1,85 @@ +# Nextcloud + +Configurations to be made after installation + +### Connect to the container and run the following commands to update the container and install `nano`: + +```bash +apt update +``` + +```bash +apt install nano +``` + +### Change PHP memory limit + +```bash +nano .htaccess +``` + +Add the following to the top of the `.htaccess` in your NextCloud container volume in `/var/www/html`: + +```bash +php_value upload_max_filesize 16G +php_value post_max_size 16G +php_value max_input_time 3600 +php_value max_execution_time 3600 +php_value memory_limit 2048M +``` + +### Add trusted domains + +Now we'll edit the config.php file with: + +```bash +nano config/config.php +``` + +Scroll down until you find the 'trusted_domains' section: + +```bash +'trusted_domains' =>  +  array ( +    0 => 'cloud.ydooc.me', +), +``` + +Then scroll down to the bottom of the file where you should see: + +```bash +'installed' => true, +``` + +And add the following before the last `);`: + +```bash +'overwriteprotocol' => 'https', +'default_phone_region' => 'BR', +'enable_previews' => true, +``` + +### Fix CallDAV + +Now we'll edit the 000-default.conf file with: + +```bash +nano /etc/apache2/sites-enabled/000-default.conf +``` + +Scroll to the end of the file and add the following after the ``: + +```bash +Redirect 301 /.well-known/carddav https://ydooc.me/remote.php/dav +Redirect 301 /.well-known/caldav https://cloud.ydooc.me/remote.php/dav +Redirect 301 /.well-known/webdav https://cloud.ydooc.me/remote.php/dav +Redirect 301 /.well-known/webfinger https://cloud.ydooc.me/index.php +Redirect 301 /.well-known/nodeinfo https://cloud.ydooc.me/index.php +``` + +### Monitoring + +If you are using Uptime Kuma to monitor your Nextcloud instance, you can use the following settings: + +1. URL: `https://cloud.ydooc.me/cron.php` +2. Heartbeat: `180` diff --git a/docker-compose/ntfy/docker-compose.yml b/docker-compose/ntfy/docker-compose.yml new file mode 100644 index 0000000..9754279 --- /dev/null +++ b/docker-compose/ntfy/docker-compose.yml @@ -0,0 +1,38 @@ +version: "3.8" + +volumes: + ntfy: + name: ntfy + +networks: + ntfy: + name: ntfy + +services: + ntfy: + container_name: ntfy + hostname: ntfy + image: ghcr.io/maybe-finance/maybe:latest + volumes: + - ${DATA_DIR}:/rails/storage + ports: + - 3000:3000 + restart: unless-stopped + environment: + SELF_HOSTING_ENABLED: "true" + RAILS_FORCE_SSL: "false" + RAILS_ASSUME_SSL: "false" + GOOD_JOB_EXECUTION_MODE: async + SECRET_KEY_BASE: ${SECRET_KEY_BASE} + DB_HOST: maybe-postgres + POSTGRES_DB: ${POSTGRES_DB} + POSTGRES_USER: ${POSTGRES_USER} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} + SYNTH_API_KEY: ${SYNTH_API_KEY} + networks: + - maybe + depends_on: + maybe-postgres: + condition: service_healthy + + diff --git a/docker-compose/uptime-kuma/.env.example b/docker-compose/uptime-kuma/.env.example index 1b90c5f..4b0f774 100644 --- a/docker-compose/uptime-kuma/.env.example +++ b/docker-compose/uptime-kuma/.env.example @@ -1,5 +1,3 @@ TZ= -PUID= -PGID= -DATA_DIR= -DATA_DIR= +DATA_DIR=/uptime-kuma + diff --git a/docker-compose/uptime-kuma/docker-compose.yml b/docker-compose/uptime-kuma/docker-compose.yml index 741be0a..51dd9c8 100644 --- a/docker-compose/uptime-kuma/docker-compose.yml +++ b/docker-compose/uptime-kuma/docker-compose.yml @@ -1,4 +1,10 @@ -version: '3.7' +networks: + uptime-kuma: + external: true + +volumes: + uptime-kuma: + name: uptime-kuma services: uptime-kuma: @@ -9,18 +15,16 @@ services: - 3001:3001 environment: - TZ=$TZ - - PUID=$PUID - - PGID=$PGID volumes: - - ${DATA_DIR}/uptime-kuma:/app/data + - ${DATA_DIR}:/app/data security_opt: - no-new-privileges:true networks: - - pegasus + - uptime-kuma - docker-proxy: + uptime-kuma-docker-proxy: image: ghcr.io/tecnativa/docker-socket-proxy:latest - container_name: docker-proxy + container_name: uptime-kuma-docker-proxy volumes: - /var/run/docker.sock:/var/run/docker.sock:ro restart: unless-stopped @@ -34,12 +38,5 @@ services: - CONTAINERS=1 - POST=0 networks: - - pegasus + - uptime-kuma -networks: - pegasus: - external: true - -volumes: - uptime-kuma: - name: uptime-kuma diff --git a/docker.md b/docker.md index c4e8df8..6db37dc 100644 --- a/docker.md +++ b/docker.md @@ -1,4 +1,4 @@ -## Docker +# Docker This is a simple `Docker` setup that I use for my projects. It is based on the `docker-compose` file and LXC containers. diff --git a/homepage.md b/homepage.md new file mode 100644 index 0000000..21c223e --- /dev/null +++ b/homepage.md @@ -0,0 +1,15 @@ +# Homepage + +`Homepage` is a self-hosted dashboard solution for centralizing and organizing data and information. + +To `create` or `update` a new Proxmox VE Homepage LXC, run the command below in the `Proxmox VE Shell`. + +```bash +bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/homepage.sh)" +``` + +> To customize, use configuration files (bookmarks.yaml, services.yaml, widgets.yaml and settings.yaml) located in `/homepage` and paste at `/opt/homepage/config` + +> The service will be available at: `http://:3000` + +> Use a YAML validator to check the syntax of the configuration files: [YAML Validator](https://codebeautify.org/yaml-validator) diff --git a/homepage/bookmarks.yaml b/homepage/bookmarks.yaml new file mode 100755 index 0000000..f855e71 --- /dev/null +++ b/homepage/bookmarks.yaml @@ -0,0 +1,15 @@ +- Developer: + - Github: + - abbr: GH + href: https://github.com/ + +- Social: + - Reddit: + - icon: reddit.png + href: https://reddit.com/ + description: The front page of the internet + +- Entertainment: + - YouTube: + - abbr: YT + href: https://youtube.com/ diff --git a/homepage/custom.css b/homepage/custom.css new file mode 100755 index 0000000..e69de29 diff --git a/homepage/custom.js b/homepage/custom.js new file mode 100755 index 0000000..e69de29 diff --git a/homepage/docker.yaml b/homepage/docker.yaml new file mode 100755 index 0000000..653c5e0 --- /dev/null +++ b/homepage/docker.yaml @@ -0,0 +1,10 @@ +--- +# For configuration options and examples, please see: +# https://gethomepage.dev/latest/configs/docker/ + +# my-docker: +# host: 127.0.0.1 +# port: 2375 + +# my-docker: +# socket: /var/run/docker.sock diff --git a/homepage/kubernetes.yaml b/homepage/kubernetes.yaml new file mode 100755 index 0000000..e69de29 diff --git a/homepage/logs/homepage.log b/homepage/logs/homepage.log new file mode 100755 index 0000000..eed4061 --- /dev/null +++ b/homepage/logs/homepage.log @@ -0,0 +1,14495 @@ +[2024-07-26T18:27:18.209Z] info: docker.yaml was copied to the config folder +[2024-07-26T18:27:18.225Z] info: custom.css was copied to the config folder +[2024-07-26T18:27:18.226Z] info: custom.js was copied to the config folder +[2024-07-26T18:27:18.257Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:27:18.258Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:27:18.261Z] info: kubernetes.yaml was copied to the config folder +[2024-07-26T18:27:18.268Z] error: Failed to load services.yaml, please check for errors +[2024-07-26T18:27:18.268Z] error: YAMLException: bad indentation of a mapping entry (30:9) + + 27 | fields: ["wanted", "queued"] + 28 | url: + 29 | key: #api-key + 30 | - Overseer: +--------------^ + 31 | icon: overseerr.png + 32 | href: +[2024-07-26T18:27:22.057Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:27:22.059Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:27:22.062Z] error: Failed to load services.yaml, please check for errors +[2024-07-26T18:27:22.063Z] error: YAMLException: bad indentation of a mapping entry (30:9) + + 27 | fields: ["wanted", "queued"] + 28 | url: + 29 | key: #api-key + 30 | - Overseer: +--------------^ + 31 | icon: overseerr.png + 32 | href: +[2024-07-26T18:27:47.660Z] error: Failed to load services.yaml, please check for errors +[2024-07-26T18:27:47.660Z] error: YAMLException: bad indentation of a mapping entry (46:9) + + 43 | type: bazarr + 44 | url: + 45 | key: #api-key + 46 | - Data: +--------------^ + 47 | - "": + 48 | widget: +[2024-07-26T18:27:47.664Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:27:47.666Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:27:48.434Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:27:48.435Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:27:48.440Z] error: Failed to load services.yaml, please check for errors +[2024-07-26T18:27:48.440Z] error: YAMLException: bad indentation of a mapping entry (46:9) + + 43 | type: bazarr + 44 | url: + 45 | key: #api-key + 46 | - Data: +--------------^ + 47 | - "": + 48 | widget: +[2024-07-26T18:28:51.347Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:28:51.348Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:28:52.118Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:28:52.118Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:28:52.596Z] error: undefined +[2024-07-26T18:28:57.676Z] error: undefined +[2024-07-26T18:28:59.584Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:28:59.585Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:28:59.597Z] error: undefined +[2024-07-26T18:29:04.607Z] error: undefined +[2024-07-26T18:29:05.507Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:05.507Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:05.520Z] error: undefined +[2024-07-26T18:29:05.530Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:05.530Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:06.081Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:06.081Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:06.591Z] error: undefined +[2024-07-26T18:29:16.656Z] error: undefined +[2024-07-26T18:29:16.964Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:16.964Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:16.969Z] error: undefined +[2024-07-26T18:29:21.976Z] error: undefined +[2024-07-26T18:29:22.204Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:22.204Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:22.210Z] error: undefined +[2024-07-26T18:29:26.666Z] error: undefined +[2024-07-26T18:29:27.261Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:27.262Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:27.277Z] error: undefined +[2024-07-26T18:29:27.278Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:27.279Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:27.738Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:27.739Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:27.964Z] error: undefined +[2024-07-26T18:29:30.824Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:30.824Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:30.830Z] error: undefined +[2024-07-26T18:29:33.058Z] error: undefined +[2024-07-26T18:29:35.840Z] error: undefined +[2024-07-26T18:29:37.315Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:37.315Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:37.322Z] error: undefined +[2024-07-26T18:29:44.378Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:44.378Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:44.383Z] error: undefined +[2024-07-26T18:29:44.387Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:44.387Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:44.817Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:44.817Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:45.159Z] error: undefined +[2024-07-26T18:29:50.793Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:50.793Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:50.796Z] error: undefined +[2024-07-26T18:29:50.800Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:50.800Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:51.242Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:51.243Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:51.418Z] error: undefined +[2024-07-26T18:29:56.576Z] error: undefined +[2024-07-26T18:29:59.510Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:29:59.511Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:29:59.515Z] error: undefined +[2024-07-26T18:30:04.560Z] error: undefined +[2024-07-26T18:30:06.172Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:06.172Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:06.179Z] error: undefined +[2024-07-26T18:30:11.199Z] error: undefined +[2024-07-26T18:30:18.382Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:18.383Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:18.388Z] error: undefined +[2024-07-26T18:30:18.392Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:18.393Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:19.115Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:19.116Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:19.640Z] error: undefined +[2024-07-26T18:30:23.767Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:23.767Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:23.780Z] error: undefined +[2024-07-26T18:30:23.794Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:23.795Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:24.447Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:24.448Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:24.943Z] error: undefined +[2024-07-26T18:30:30.043Z] error: undefined +[2024-07-26T18:30:31.332Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:31.333Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:31.341Z] error: undefined +[2024-07-26T18:30:31.373Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:31.373Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:31.909Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:31.910Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:32.466Z] error: undefined +[2024-07-26T18:30:37.521Z] error: undefined +[2024-07-26T18:30:38.314Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:38.315Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:38.327Z] error: undefined +[2024-07-26T18:30:38.336Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:38.337Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:38.961Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:38.961Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:39.310Z] error: undefined +[2024-07-26T18:30:44.518Z] error: undefined +[2024-07-26T18:30:46.058Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:46.058Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:46.069Z] error: undefined +[2024-07-26T18:30:46.071Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:46.071Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:46.471Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:46.471Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:46.787Z] error: undefined +[2024-07-26T18:30:51.847Z] error: undefined +[2024-07-26T18:30:58.549Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:30:58.549Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:30:58.552Z] error: undefined +[2024-07-26T18:31:01.854Z] error: undefined +[2024-07-26T18:31:05.871Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:31:05.872Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:31:05.874Z] error: undefined +[2024-07-26T18:31:08.558Z] error: undefined +[2024-07-26T18:31:15.888Z] error: undefined +[2024-07-26T18:31:18.564Z] error: undefined +[2024-07-26T18:31:30.895Z] error: undefined +[2024-07-26T18:31:36.861Z] error: undefined +[2024-07-26T18:31:53.571Z] error: undefined +[2024-07-26T18:32:05.901Z] error: undefined +[2024-07-26T18:32:41.868Z] error: undefined +[2024-07-26T18:32:45.906Z] error: undefined +[2024-07-26T18:33:08.576Z] error: undefined +[2024-07-26T18:34:45.920Z] error: undefined +[2024-07-26T18:36:31.874Z] error: undefined +[2024-07-26T18:36:53.582Z] error: undefined +[2024-07-26T18:37:50.464Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:37:50.464Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:37:50.470Z] error: undefined +[2024-07-26T18:37:50.482Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:37:50.482Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:37:51.661Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:37:51.662Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:37:52.470Z] error: undefined +[2024-07-26T18:38:00.360Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:38:00.361Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:38:00.519Z] error: undefined +[2024-07-26T18:38:00.794Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:38:00.794Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:38:01.216Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:38:01.216Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:38:01.456Z] error: undefined +[2024-07-26T18:38:06.693Z] error: undefined +[2024-07-26T18:38:08.416Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:38:08.416Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:38:08.424Z] error: undefined +[2024-07-26T18:38:08.426Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:38:08.426Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:38:08.894Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:38:08.894Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:38:09.092Z] error: undefined +[2024-07-26T18:38:19.313Z] error: undefined +[2024-07-26T18:38:29.320Z] error: undefined +[2024-07-26T18:39:14.328Z] error: undefined +[2024-07-26T18:40:23.782Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:23.783Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:23.790Z] error: undefined +[2024-07-26T18:40:23.806Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:23.807Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:24.421Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:24.422Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:24.825Z] error: undefined +[2024-07-26T18:40:29.892Z] error: undefined +[2024-07-26T18:40:30.742Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:30.743Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:30.744Z] error: undefined +[2024-07-26T18:40:30.778Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:30.778Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:31.228Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:31.229Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:31.592Z] error: undefined +[2024-07-26T18:40:36.796Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:36.797Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:36.801Z] error: undefined +[2024-07-26T18:40:36.806Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:36.806Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:37.413Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:37.414Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:37.807Z] error: undefined +[2024-07-26T18:40:47.881Z] error: undefined +[2024-07-26T18:40:48.905Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:48.905Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:48.908Z] error: undefined +[2024-07-26T18:40:48.912Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:48.913Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:49.475Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:40:49.475Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:40:49.873Z] error: undefined +[2024-07-26T18:40:59.931Z] error: undefined +[2024-07-26T18:41:00.698Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:00.699Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:00.701Z] error: undefined +[2024-07-26T18:41:10.712Z] error: undefined +[2024-07-26T18:41:19.937Z] error: undefined +[2024-07-26T18:41:27.028Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:27.030Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:27.034Z] error: undefined +[2024-07-26T18:41:27.074Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:27.075Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:27.565Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:27.565Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:27.911Z] error: undefined +[2024-07-26T18:41:30.075Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:30.075Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:30.367Z] error: undefined +[2024-07-26T18:41:35.414Z] error: undefined +[2024-07-26T18:41:46.465Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:46.465Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:46.481Z] error: undefined +[2024-07-26T18:41:46.490Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:46.491Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:46.929Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:46.929Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:47.260Z] error: undefined +[2024-07-26T18:41:48.619Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:48.619Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:48.821Z] error: undefined +[2024-07-26T18:41:57.588Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:57.588Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:57.595Z] error: undefined +[2024-07-26T18:41:57.599Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:57.599Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:58.462Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:41:58.462Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:41:58.755Z] error: undefined +[2024-07-26T18:42:03.822Z] error: undefined +[2024-07-26T18:42:14.675Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:42:14.676Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:42:14.682Z] error: undefined +[2024-07-26T18:42:14.686Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:42:14.687Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:42:15.139Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:42:15.139Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:42:15.547Z] error: undefined +[2024-07-26T18:42:18.445Z] error: Failed to load widgets, please check widgets.yaml for errors or remove example entries. +[2024-07-26T18:42:18.445Z] error: bad indentation of a mapping entry (4:5) + + 1 | - greeting: + 2 | text_size: xl + 3 | text: Welcome To Stanek's Server + 4 | - resources: +---------^ + 5 | expanded: true + 6 | cpu: true +[2024-07-26T18:42:18.450Z] error: undefined +[2024-07-26T18:42:20.612Z] error: undefined +[2024-07-26T18:42:28.457Z] error: undefined +[2024-07-26T18:42:38.948Z] error: undefined +[2024-07-26T18:42:40.489Z] error: undefined +[2024-07-26T18:42:45.671Z] error: undefined +[2024-07-26T18:42:55.679Z] error: undefined +[2024-07-26T18:42:55.989Z] error: undefined +[2024-07-26T18:42:56.748Z] error: undefined +[2024-07-26T18:43:01.812Z] error: undefined +[2024-07-26T18:43:21.818Z] error: undefined +[2024-07-26T18:43:43.367Z] error: undefined +[2024-07-26T18:43:44.463Z] error: undefined +[2024-07-26T18:43:49.527Z] error: undefined +[2024-07-26T18:43:57.005Z] error: undefined +[2024-07-26T18:43:58.115Z] error: undefined +[2024-07-26T18:44:08.177Z] error: undefined +[2024-07-26T18:44:26.925Z] error: undefined +[2024-07-26T18:44:27.940Z] error: undefined +[2024-07-26T18:44:33.037Z] error: undefined +[2024-07-26T18:44:44.614Z] error: undefined +[2024-07-26T18:44:48.043Z] error: undefined +[2024-07-26T18:44:49.623Z] error: undefined +[2024-07-26T18:44:59.629Z] error: undefined +[2024-07-26T18:45:18.053Z] error: undefined +[2024-07-26T18:45:34.635Z] error: undefined +[2024-07-26T18:45:39.327Z] error: undefined +[2024-07-26T18:45:44.341Z] error: undefined +[2024-07-26T18:46:09.354Z] error: undefined +[2024-07-26T18:46:18.059Z] error: undefined +[2024-07-26T18:46:49.642Z] error: undefined +[2024-07-26T18:47:03.686Z] error: undefined +[2024-07-26T18:47:05.397Z] error: undefined +[2024-07-26T18:47:15.500Z] error: undefined +[2024-07-26T18:47:25.506Z] error: undefined +[2024-07-26T18:47:48.465Z] error: undefined +[2024-07-26T18:47:49.398Z] error: undefined +[2024-07-26T18:47:54.881Z] error: undefined +[2024-07-26T18:48:04.995Z] error: undefined +[2024-07-26T18:48:13.631Z] error: undefined +[2024-07-26T18:48:15.000Z] error: undefined +[2024-07-26T18:48:23.642Z] error: undefined +[2024-07-26T18:48:27.696Z] error: undefined +[2024-07-26T18:48:28.833Z] error: undefined +[2024-07-26T18:48:31.587Z] error: undefined +[2024-07-26T18:48:38.920Z] error: undefined +[2024-07-26T18:48:41.771Z] error: undefined +[2024-07-26T18:48:48.926Z] error: undefined +[2024-07-26T18:48:51.107Z] error: undefined +[2024-07-26T18:48:51.927Z] error: undefined +[2024-07-26T18:48:54.917Z] error: undefined +[2024-07-26T18:48:57.003Z] error: undefined +[2024-07-26T18:49:02.528Z] error: undefined +[2024-07-26T18:49:05.076Z] error: undefined +[2024-07-26T18:49:07.420Z] error: undefined +[2024-07-26T18:49:17.479Z] error: undefined +[2024-07-26T18:49:26.579Z] error: undefined +[2024-07-26T18:49:27.873Z] error: undefined +[2024-07-26T18:49:32.998Z] error: undefined +[2024-07-26T18:49:48.005Z] error: undefined +[2024-07-26T18:50:21.329Z] error: undefined +[2024-07-26T18:50:22.133Z] error: undefined +[2024-07-26T18:50:32.213Z] error: undefined +[2024-07-26T18:50:43.436Z] error: undefined +[2024-07-26T18:50:44.266Z] error: undefined +[2024-07-26T18:50:54.324Z] error: undefined +[2024-07-26T18:51:04.331Z] error: undefined +[2024-07-26T18:51:33.504Z] error: undefined +[2024-07-26T18:51:34.890Z] error: undefined +[2024-07-26T18:51:44.961Z] error: undefined +[2024-07-26T18:51:59.969Z] error: undefined +[2024-07-26T18:52:39.281Z] error: undefined +[2024-07-26T18:52:40.569Z] error: undefined +[2024-07-26T18:52:43.741Z] error: undefined +[2024-07-26T18:52:48.917Z] error: undefined +[2024-07-26T18:52:50.636Z] error: undefined +[2024-07-26T18:53:01.639Z] error: undefined +[2024-07-26T18:53:02.737Z] error: undefined +[2024-07-26T18:53:07.831Z] error: undefined +[2024-07-26T18:53:11.577Z] error: undefined +[2024-07-26T18:53:12.351Z] error: undefined +[2024-07-26T18:53:22.414Z] error: undefined +[2024-07-26T18:53:27.867Z] error: undefined +[2024-07-26T18:53:28.594Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:53:28.595Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:53:28.603Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:53:28.604Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:53:28.695Z] error: undefined +[2024-07-26T18:53:33.804Z] error: undefined +[2024-07-26T18:53:53.810Z] error: undefined +[2024-07-26T18:53:58.561Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:53:58.561Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:53:58.569Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:53:58.569Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:54:11.666Z] error: undefined +[2024-07-26T18:54:11.672Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:54:11.673Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:54:11.680Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:54:11.680Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:54:12.583Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:54:12.586Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:54:12.595Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:54:12.595Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:54:12.601Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:54:12.601Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:54:12.791Z] error: undefined +[2024-07-26T18:54:22.875Z] error: undefined +[2024-07-26T18:54:31.347Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:54:31.350Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:54:31.367Z] error: undefined +[2024-07-26T18:54:31.375Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:54:31.375Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:54:31.386Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:54:31.388Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:54:32.089Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:54:32.094Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:54:32.101Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:54:32.102Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:54:32.106Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:54:32.106Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:54:32.224Z] error: undefined +[2024-07-26T18:54:34.811Z] error: undefined +[2024-07-26T18:54:37.297Z] error: undefined +[2024-07-26T18:54:39.973Z] error: undefined +[2024-07-26T18:54:50.003Z] error: undefined +[2024-07-26T18:54:57.308Z] error: undefined +[2024-07-26T18:55:02.101Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:55:02.101Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:55:02.109Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:55:02.109Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:55:22.318Z] error: undefined +[2024-07-26T18:55:25.279Z] error: undefined +[2024-07-26T18:55:32.184Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:55:32.184Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:55:32.196Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:55:32.196Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:02.217Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:02.218Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:02.226Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:02.227Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:20.710Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:56:20.712Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:56:20.743Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:20.743Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:20.756Z] error: undefined +[2024-07-26T18:56:20.754Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:20.754Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:22.139Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:56:22.141Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:56:22.149Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:22.149Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:22.155Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:22.155Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:22.353Z] error: undefined +[2024-07-26T18:56:32.467Z] error: undefined +[2024-07-26T18:56:50.260Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:56:50.262Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:56:50.292Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:50.298Z] error: undefined +[2024-07-26T18:56:50.293Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:50.302Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:50.302Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:50.951Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:56:50.958Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:56:50.966Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:50.966Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:50.974Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:56:50.974Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:56:51.106Z] error: undefined +[2024-07-26T18:56:56.183Z] error: undefined +[2024-07-26T18:57:16.194Z] error: undefined +[2024-07-26T18:57:20.966Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:20.967Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:20.978Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:20.978Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:25.957Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:25.961Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:25.991Z] error: undefined +[2024-07-26T18:57:26.016Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:26.016Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:26.037Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:26.038Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:26.806Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:26.807Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:26.827Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:26.827Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:26.834Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:26.834Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:26.943Z] error: undefined +[2024-07-26T18:57:32.036Z] error: undefined +[2024-07-26T18:57:47.042Z] error: undefined +[2024-07-26T18:57:51.619Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:51.623Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:51.648Z] error: undefined +[2024-07-26T18:57:51.665Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:51.665Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:51.674Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:51.674Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:52.655Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:52.658Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:52.671Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:52.671Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:52.680Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:52.680Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:52.820Z] error: undefined +[2024-07-26T18:57:57.914Z] error: undefined +[2024-07-26T18:57:58.534Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:58.542Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:58.573Z] error: undefined +[2024-07-26T18:57:58.593Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:58.593Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:58.605Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:58.605Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:59.481Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:59.483Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:57:59.492Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:59.493Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:59.500Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:57:59.500Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:57:59.683Z] error: undefined +[2024-07-26T18:58:04.790Z] error: undefined +[2024-07-26T18:58:09.687Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:58:09.691Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:58:09.724Z] error: undefined +[2024-07-26T18:58:09.739Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:58:09.740Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:58:09.832Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:58:09.833Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:58:10.627Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:58:10.628Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:58:10.641Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:58:10.642Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:58:10.649Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:58:10.649Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:58:10.811Z] error: undefined +[2024-07-26T18:58:15.883Z] error: undefined +[2024-07-26T18:58:30.891Z] error: undefined +[2024-07-26T18:58:40.636Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:58:40.637Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:58:40.649Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:58:40.650Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:59:10.666Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:59:10.666Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:59:10.673Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:59:10.673Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:59:10.898Z] error: undefined +[2024-07-26T18:59:26.599Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:59:26.608Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:59:26.648Z] error: undefined +[2024-07-26T18:59:26.659Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:59:26.660Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:59:26.678Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:59:26.678Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:59:27.960Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:59:27.963Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T18:59:27.972Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:59:27.973Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:59:27.987Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:59:27.988Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:59:28.160Z] error: undefined +[2024-07-26T18:59:38.266Z] error: undefined +[2024-07-26T18:59:57.970Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:59:57.970Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T18:59:57.979Z] error: Error calling http://sonarr.host/... +[2024-07-26T18:59:57.979Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:00:03.274Z] error: undefined +[2024-07-26T19:00:27.992Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:00:27.992Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:00:27.999Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:00:27.999Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:00:58.016Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:00:58.017Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:00:58.046Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:00:58.046Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:00:58.280Z] error: undefined +[2024-07-26T19:01:28.062Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:01:28.062Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:01:28.070Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:01:28.071Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:01:58.088Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:01:58.088Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:01:58.094Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:01:58.094Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:03.289Z] error: undefined +[2024-07-26T19:02:20.377Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:02:20.382Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:02:20.418Z] error: undefined +[2024-07-26T19:02:20.421Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:20.422Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:20.435Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:20.437Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:25.449Z] error: undefined +[2024-07-26T19:02:28.112Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:28.112Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:28.119Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:28.119Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:34.121Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:02:34.129Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:02:34.154Z] error: undefined +[2024-07-26T19:02:34.164Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:34.165Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:34.177Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:34.177Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:39.165Z] error: undefined +[2024-07-26T19:02:39.542Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:02:39.544Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:02:39.559Z] error: undefined +[2024-07-26T19:02:39.595Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:39.595Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:39.605Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:39.606Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:45.458Z] error: undefined +[2024-07-26T19:02:49.151Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:02:49.155Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:02:49.186Z] error: undefined +[2024-07-26T19:02:49.188Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:49.188Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:49.204Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:49.205Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:49.680Z] error: undefined +[2024-07-26T19:02:58.138Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:58.138Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:58.144Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:02:58.144Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:02:59.370Z] error: undefined +[2024-07-26T19:03:04.173Z] error: undefined +[2024-07-26T19:03:04.689Z] error: undefined +[2024-07-26T19:03:14.378Z] error: undefined +[2024-07-26T19:03:28.174Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:03:28.175Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:03:28.184Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:03:28.184Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:03:29.696Z] error: undefined +[2024-07-26T19:03:34.386Z] error: undefined +[2024-07-26T19:03:38.629Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:03:38.646Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:03:38.668Z] error: undefined +[2024-07-26T19:03:38.684Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:03:38.684Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:03:38.695Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:03:38.695Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:03:40.465Z] error: undefined +[2024-07-26T19:03:48.682Z] error: undefined +[2024-07-26T19:03:54.180Z] error: undefined +[2024-07-26T19:03:58.205Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:03:58.205Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:03:58.213Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:03:58.214Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:03:58.690Z] error: undefined +[2024-07-26T19:04:20.040Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:04:20.045Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:04:20.082Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:04:20.083Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:04:20.095Z] error: undefined +[2024-07-26T19:04:20.116Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:04:20.117Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:04:28.247Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:04:28.248Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:04:28.263Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:04:28.265Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:04:28.697Z] error: undefined +[2024-07-26T19:04:30.109Z] error: undefined +[2024-07-26T19:04:35.476Z] error: undefined +[2024-07-26T19:04:39.395Z] error: undefined +[2024-07-26T19:04:44.706Z] error: undefined +[2024-07-26T19:04:55.116Z] error: undefined +[2024-07-26T19:04:56.960Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:04:56.964Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:04:56.994Z] error: undefined +[2024-07-26T19:04:56.994Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:04:56.995Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:04:57.007Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:04:57.009Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:05:02.022Z] error: undefined +[2024-07-26T19:05:08.298Z] error: undefined +[2024-07-26T19:05:14.190Z] error: undefined +[2024-07-26T19:05:17.029Z] error: undefined +[2024-07-26T19:05:28.284Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:05:28.284Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:05:28.291Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:05:28.291Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:05:35.124Z] error: undefined +[2024-07-26T19:05:37.038Z] error: undefined +[2024-07-26T19:05:58.311Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:05:58.312Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:05:58.319Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:05:58.320Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:05:58.706Z] error: undefined +[2024-07-26T19:06:19.405Z] error: undefined +[2024-07-26T19:06:20.135Z] error: undefined +[2024-07-26T19:06:25.484Z] error: undefined +[2024-07-26T19:06:28.333Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:06:28.333Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:06:28.342Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:06:28.342Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:06:39.719Z] error: undefined +[2024-07-26T19:06:58.360Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:06:58.361Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:06:58.367Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:06:58.367Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:07:28.383Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:07:28.383Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:07:28.390Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:07:28.390Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:07:32.046Z] error: undefined +[2024-07-26T19:07:48.308Z] error: undefined +[2024-07-26T19:07:58.405Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:07:58.405Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:07:58.411Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:07:58.411Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:08:19.212Z] error: undefined +[2024-07-26T19:08:28.429Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:08:28.429Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:08:28.438Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:08:28.438Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:08:31.178Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:08:31.182Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:08:31.227Z] error: undefined +[2024-07-26T19:08:31.246Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:08:31.250Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:08:31.267Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:08:31.268Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:08:41.299Z] error: undefined +[2024-07-26T19:08:58.453Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:08:58.453Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:08:58.464Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:08:58.465Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:09:06.307Z] error: undefined +[2024-07-26T19:09:28.485Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:09:28.485Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:09:28.492Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:09:28.492Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:09:36.315Z] error: undefined +[2024-07-26T19:09:43.716Z] error: undefined +[2024-07-26T19:09:50.141Z] error: undefined +[2024-07-26T19:09:58.508Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:09:58.508Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:09:58.514Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:09:58.514Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:10:28.532Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:10:28.532Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:10:28.542Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:10:28.542Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:10:58.562Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:10:58.563Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:10:58.572Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:10:58.573Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:11:07.054Z] error: undefined +[2024-07-26T19:11:11.324Z] error: undefined +[2024-07-26T19:11:28.590Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:11:28.590Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:11:28.597Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:11:28.597Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:11:58.617Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:11:58.618Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:11:58.625Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:11:58.625Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:12:05.492Z] error: undefined +[2024-07-26T19:12:08.886Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:12:08.890Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:12:08.949Z] error: undefined +[2024-07-26T19:12:08.960Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:12:08.961Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:12:08.970Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:12:08.970Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:12:18.959Z] error: undefined +[2024-07-26T19:12:28.681Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:12:28.681Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:12:28.688Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:12:28.688Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:12:31.335Z] error: undefined +[2024-07-26T19:12:37.496Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:12:37.501Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:12:37.527Z] error: undefined +[2024-07-26T19:12:37.542Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:12:37.543Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:12:37.553Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:12:37.554Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:12:39.421Z] error: undefined +[2024-07-26T19:12:42.571Z] error: undefined +[2024-07-26T19:12:43.725Z] error: undefined +[2024-07-26T19:12:43.969Z] error: undefined +[2024-07-26T19:12:58.705Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:12:58.706Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:12:58.713Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:12:58.713Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:12:59.277Z] error: undefined +[2024-07-26T19:13:07.578Z] error: undefined +[2024-07-26T19:13:11.273Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:13:11.282Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:13:11.363Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:13:11.369Z] error: undefined +[2024-07-26T19:13:11.364Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:13:11.374Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:13:11.375Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:13:12.563Z] error: undefined +[2024-07-26T19:13:12.724Z] error: undefined +[2024-07-26T19:13:13.038Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:13:13.041Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:13:13.053Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:13:13.054Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:13:13.064Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:13:13.065Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:13:13.890Z] error: undefined +[2024-07-26T19:13:18.264Z] error: undefined +[2024-07-26T19:13:19.042Z] error: undefined +[2024-07-26T19:13:28.276Z] error: undefined +[2024-07-26T19:13:39.055Z] error: undefined +[2024-07-26T19:13:43.048Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:13:43.048Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:13:43.057Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:13:43.057Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:14:13.083Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:14:13.084Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:14:13.092Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:14:13.093Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:14:19.130Z] error: undefined +[2024-07-26T19:14:23.485Z] error: undefined +[2024-07-26T19:14:43.106Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:14:43.106Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:14:43.116Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:14:43.116Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:15:13.128Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:15:13.128Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:15:13.135Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:15:13.135Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:15:28.692Z] error: undefined +[2024-07-26T19:15:43.151Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:15:43.152Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:15:43.158Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:15:43.158Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:16:04.197Z] error: undefined +[2024-07-26T19:16:13.175Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:16:13.176Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:16:13.185Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:16:13.185Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:16:43.206Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:16:43.207Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:16:43.217Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:16:43.217Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:17:13.232Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:17:13.232Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:17:13.238Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:17:13.238Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:17:34.217Z] error: undefined +[2024-07-26T19:17:43.255Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:17:43.255Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:17:43.264Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:17:43.264Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:18:13.280Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:18:13.280Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:18:13.286Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:18:13.286Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:18:29.485Z] error: undefined +[2024-07-26T19:18:43.299Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:18:43.299Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:18:43.305Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:18:43.306Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:19:13.347Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:19:13.347Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:19:13.357Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:19:13.358Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:19:43.377Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:19:43.378Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:19:43.385Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:19:43.385Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:20:13.403Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:20:13.403Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:20:13.412Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:20:13.413Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:20:19.228Z] error: undefined +[2024-07-26T19:20:43.427Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:20:43.428Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:20:43.443Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:20:43.445Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:21:13.467Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:21:13.467Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:21:13.474Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:21:13.475Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:21:43.494Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:21:43.494Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:21:43.500Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:21:43.501Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:22:13.524Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:22:13.525Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:22:13.535Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:22:13.536Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:22:43.557Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:22:43.557Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:22:43.565Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:22:43.566Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:23:13.587Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:23:13.587Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:23:13.593Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:23:13.593Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:23:43.616Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:23:43.617Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:23:43.629Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:23:43.629Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:24:13.665Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:24:13.665Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:24:13.674Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:24:13.675Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:24:43.694Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:24:43.694Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:24:43.707Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:24:43.708Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:25:13.731Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:25:13.731Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:25:13.741Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:25:13.741Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:25:30.270Z] error: undefined +[2024-07-26T19:25:43.770Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:25:43.770Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:25:43.776Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:25:43.776Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:26:13.795Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:26:13.796Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:26:13.808Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:26:13.808Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:26:27.263Z] error: undefined +[2024-07-26T19:26:27.274Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:26:27.279Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T19:26:27.308Z] error: undefined +[2024-07-26T19:26:27.309Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:26:27.309Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:26:27.319Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:26:27.319Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:26:37.325Z] error: undefined +[2024-07-26T19:26:37.481Z] error: undefined +[2024-07-26T19:26:43.827Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:26:43.827Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:26:43.833Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:26:43.833Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:27:02.335Z] error: undefined +[2024-07-26T19:27:02.490Z] error: undefined +[2024-07-26T19:27:13.852Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:27:13.852Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:27:13.858Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:27:13.858Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:27:37.689Z] error: undefined +[2024-07-26T19:27:43.877Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:27:43.879Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:27:43.887Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:27:43.888Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:27:52.346Z] error: undefined +[2024-07-26T19:28:13.903Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:28:13.903Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:28:13.910Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:28:13.910Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:28:37.352Z] error: undefined +[2024-07-26T19:28:42.870Z] error: undefined +[2024-07-26T19:28:43.926Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:28:43.926Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:28:43.934Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:28:43.935Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:29:13.946Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:29:13.947Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:29:13.953Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:29:13.953Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:29:43.976Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:29:43.976Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:29:43.987Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:29:43.987Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:30:14.003Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:30:14.003Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:30:14.010Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:30:14.010Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:30:18.091Z] error: undefined +[2024-07-26T19:30:44.041Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:30:44.041Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:30:44.047Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:30:44.047Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:31:14.063Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:31:14.063Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:31:14.070Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:31:14.070Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:31:37.361Z] error: undefined +[2024-07-26T19:31:44.082Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:31:44.082Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:31:44.089Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:31:44.089Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:31:51.749Z] error: undefined +[2024-07-26T19:32:14.104Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:32:14.105Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:32:14.111Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:32:14.111Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:32:44.124Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:32:44.125Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:32:44.132Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:32:44.132Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:33:14.144Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:33:14.145Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:33:14.148Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:33:14.148Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:33:33.296Z] error: undefined +[2024-07-26T19:33:44.164Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:33:44.164Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:33:44.171Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:33:44.171Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:34:14.185Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:34:14.185Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:34:14.194Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:34:14.194Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:34:14.234Z] error: undefined +[2024-07-26T19:34:44.212Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:34:44.212Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:34:44.219Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:34:44.219Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:35:14.234Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:35:14.234Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:35:14.242Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:35:14.243Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:35:44.260Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:35:44.260Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:35:44.267Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:35:44.267Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:36:12.366Z] error: undefined +[2024-07-26T19:36:14.282Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:36:14.282Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:36:14.289Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:36:14.289Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:36:44.307Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:36:44.308Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:36:44.315Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:36:44.315Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:37:14.330Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:37:14.330Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:37:14.338Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:37:14.338Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:37:44.352Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:37:44.352Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:37:44.362Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:37:44.362Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:38:14.380Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:38:14.380Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:38:14.384Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:38:14.385Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:38:44.563Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:38:44.564Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:38:44.570Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:38:44.571Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:39:14.642Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:39:14.642Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:39:14.651Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:39:14.651Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:39:44.664Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:39:44.665Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:39:44.673Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:39:44.673Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:40:14.685Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:40:14.686Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:40:14.689Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:40:14.690Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:40:44.704Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:40:44.704Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:40:44.708Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:40:44.708Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:41:14.744Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:41:14.744Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:41:14.756Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:41:14.756Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:41:44.782Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:41:44.782Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:41:44.786Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:41:44.786Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:42:14.797Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:42:14.798Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:42:14.801Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:42:14.802Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:42:44.815Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:42:44.815Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:42:44.822Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:42:44.823Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:43:14.836Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:43:14.836Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:43:14.842Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:43:14.843Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:43:44.863Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:43:44.864Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:43:44.871Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:43:44.871Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:44:14.885Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:44:14.886Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:44:14.893Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:44:14.893Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:44:44.908Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:44:44.908Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:44:44.914Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:44:44.914Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:45:14.929Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:45:14.930Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:45:14.937Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:45:14.937Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:45:49.951Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:45:49.951Z] error: [ + 500, + Error: getaddrinfo EAI_AGAIN sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3001, + code: 'EAI_AGAIN', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:45:49.958Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:45:49.958Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:45:53.795Z] error: undefined +[2024-07-26T19:46:19.981Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:46:19.982Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:46:19.992Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:46:19.993Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:46:50.023Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:46:50.023Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:46:50.057Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:46:50.057Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:47:20.080Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:47:20.081Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:47:20.087Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:47:20.088Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:47:50.099Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:47:50.099Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:47:50.105Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:47:50.106Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:48:20.117Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:48:20.117Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:48:20.124Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:48:20.125Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:48:50.138Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:48:50.138Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:48:50.144Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:48:50.144Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:49:20.157Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:49:20.157Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:49:20.160Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:49:20.160Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:49:32.373Z] error: undefined +[2024-07-26T19:49:50.175Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:49:50.175Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:49:50.179Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:49:50.179Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:49:54.240Z] error: undefined +[2024-07-26T19:50:20.194Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:50:20.194Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:50:20.197Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:50:20.197Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:50:50.213Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:50:50.213Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:50:50.221Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:50:50.221Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:51:20.234Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:51:20.235Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:51:20.245Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:51:20.245Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:51:50.261Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:51:50.261Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:51:50.265Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:51:50.265Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:52:20.280Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:52:20.280Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:52:20.283Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:52:20.284Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:52:50.294Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:52:50.294Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:52:50.297Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:52:50.297Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:53:20.308Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:53:20.308Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:53:20.311Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:53:20.311Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:53:50.326Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:53:50.326Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:53:50.334Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:53:50.334Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:54:20.396Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:54:20.396Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:54:20.402Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:54:20.402Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:54:50.414Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:54:50.414Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:54:50.421Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:54:50.421Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:55:20.433Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:55:20.433Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:55:20.440Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:55:20.440Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:55:50.452Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:55:50.452Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:55:50.456Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:55:50.456Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:56:20.467Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:56:20.468Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:56:20.470Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:56:20.470Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:56:50.493Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:56:50.493Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:56:50.499Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:56:50.500Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:57:20.511Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:57:20.511Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:57:20.518Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:57:20.518Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:57:50.530Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:57:50.530Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:57:50.537Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:57:50.537Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:57:54.405Z] error: undefined +[2024-07-26T19:58:20.549Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:58:20.549Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:58:20.552Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:58:20.553Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:58:50.565Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:58:50.565Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:58:50.569Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:58:50.569Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:59:20.580Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:59:20.580Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:59:20.584Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:59:20.584Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:59:50.597Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:59:50.597Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T19:59:50.601Z] error: Error calling http://sonarr.host/... +[2024-07-26T19:59:50.601Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:00:20.611Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:00:20.612Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:00:20.614Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:00:20.615Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:00:31.949Z] error: undefined +[2024-07-26T20:00:50.625Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:00:50.626Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:00:50.628Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:00:50.629Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:01:20.645Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:01:20.645Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:01:20.651Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:01:20.651Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:01:50.663Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:01:50.663Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:01:50.670Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:01:50.670Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:02:17.378Z] error: undefined +[2024-07-26T20:02:20.806Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:02:20.806Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:02:20.835Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:02:20.836Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:02:29.246Z] error: undefined +[2024-07-26T20:02:50.849Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:02:50.849Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:02:50.856Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:02:50.857Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:03:20.870Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:03:20.870Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:03:20.876Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:03:20.876Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:03:50.888Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:03:50.889Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:03:50.895Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:03:50.895Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:04:20.909Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:04:20.910Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:04:20.916Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:04:20.916Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:04:50.929Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:04:50.929Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:04:50.937Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:04:50.937Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:05:20.951Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:05:20.951Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:05:20.957Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:05:20.957Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:05:50.972Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:05:50.972Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:05:50.985Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:05:50.986Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:06:21.004Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:06:21.004Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:06:21.011Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:06:21.011Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:06:51.024Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:06:51.024Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:06:51.031Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:06:51.031Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:07:21.045Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:07:21.045Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:07:21.053Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:07:21.053Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:07:51.064Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:07:51.065Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:07:51.071Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:07:51.071Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:08:21.085Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:08:21.086Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:08:21.093Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:08:21.094Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:08:51.109Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:08:51.109Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:08:51.115Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:08:51.116Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:09:21.127Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:09:21.127Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:09:21.134Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:09:21.134Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:09:51.151Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:09:51.151Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:09:51.157Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:09:51.157Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:10:21.171Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:10:21.171Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:10:21.178Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:10:21.180Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:10:51.198Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:10:51.198Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:10:51.230Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:10:51.231Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:11:21.242Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:11:21.242Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:11:21.248Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:11:21.249Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:11:51.261Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:11:51.261Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:11:51.268Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:11:51.268Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:12:21.280Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:12:21.280Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:12:21.437Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:12:21.437Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:12:51.451Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:12:51.451Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:12:51.457Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:12:51.457Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:13:20.185Z] error: undefined +[2024-07-26T20:13:21.471Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:13:21.471Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:13:21.477Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:13:21.477Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:13:47.384Z] error: undefined +[2024-07-26T20:13:51.489Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:13:51.489Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:13:51.497Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:13:51.497Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:13:59.252Z] error: undefined +[2024-07-26T20:14:21.512Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:14:21.512Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:14:21.519Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:14:21.519Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:14:51.673Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:14:51.673Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:14:51.680Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:14:51.680Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:15:02.129Z] error: undefined +[2024-07-26T20:15:21.701Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:15:21.701Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:15:21.707Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:15:21.708Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:15:51.720Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:15:51.721Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:15:51.728Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:15:51.728Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:16:21.740Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:16:21.740Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:16:21.747Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:16:21.747Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:16:51.762Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:16:51.762Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:16:51.768Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:16:51.769Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:17:21.780Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:17:21.780Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:17:21.787Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:17:21.787Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:17:51.799Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:17:51.800Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:17:51.807Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:17:51.807Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:18:21.821Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:18:21.822Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:18:21.829Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:18:21.829Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:18:51.842Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:18:51.842Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:18:51.850Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:18:51.851Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:19:21.863Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:19:21.864Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:19:21.871Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:19:21.871Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:19:51.887Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:19:51.887Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:19:51.894Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:19:51.894Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:20:21.910Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:20:21.910Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:20:21.917Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:20:21.917Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:20:51.929Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:20:51.929Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:20:51.936Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:20:51.936Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:21:26.945Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:21:26.945Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:21:31.951Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:21:31.951Z] error: [ + 500, + Error: getaddrinfo EAI_AGAIN sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3001, + code: 'EAI_AGAIN', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:22:01.964Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:22:01.965Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:22:01.972Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:22:01.973Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:22:31.987Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:22:31.987Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:22:31.995Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:22:31.996Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:23:02.009Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:23:02.009Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:23:02.017Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:23:02.017Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:23:32.040Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:23:32.040Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:23:32.050Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:23:32.051Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:24:02.079Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:24:02.079Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:24:02.084Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:24:02.085Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:24:32.097Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:24:32.098Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:24:32.105Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:24:32.106Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:25:02.118Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:25:02.118Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:25:02.125Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:25:02.125Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:25:32.137Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:25:32.138Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:25:32.144Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:25:32.145Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:26:02.158Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:26:02.158Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:26:02.161Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:26:02.162Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:26:32.174Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:26:32.174Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:26:32.178Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:26:32.178Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:27:02.189Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:27:02.189Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:27:02.193Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:27:02.193Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:27:32.205Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:27:32.205Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:27:32.213Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:27:32.213Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:28:02.226Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:28:02.226Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:28:02.234Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:28:02.234Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:28:32.243Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:28:32.243Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:28:32.247Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:28:32.247Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:28:55.957Z] error: undefined +[2024-07-26T20:29:02.258Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:29:02.258Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:29:02.266Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:29:02.266Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:29:32.134Z] error: undefined +[2024-07-26T20:29:32.278Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:29:32.278Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:29:32.286Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:29:32.286Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:30:02.299Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:30:02.299Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:30:02.307Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:30:02.307Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:30:32.325Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:30:32.326Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:30:32.399Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:30:32.400Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:31:02.411Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:31:02.412Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:31:02.418Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:31:02.419Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:31:32.430Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:31:32.430Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:31:32.437Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:31:32.437Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:32:02.448Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:32:02.448Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:32:02.455Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:32:02.455Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:32:32.468Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:32:32.468Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:32:32.475Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:32:32.475Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:33:02.489Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:33:02.489Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:33:02.493Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:33:02.493Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:33:32.505Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:33:32.505Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:33:32.509Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:33:32.509Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:33:59.258Z] error: undefined +[2024-07-26T20:34:02.524Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:34:02.524Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:34:02.528Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:34:02.528Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:34:32.540Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:34:32.540Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:34:32.544Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:34:32.544Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:35:02.555Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:35:02.556Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:35:02.559Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:35:02.559Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:35:32.572Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:35:32.572Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:35:32.579Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:35:32.579Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:36:02.591Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:36:02.591Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:36:02.598Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:36:02.599Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:36:32.612Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:36:32.612Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:36:32.620Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:36:32.620Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:37:02.639Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:37:02.639Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:37:02.645Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:37:02.645Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:37:32.657Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:37:32.657Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:37:32.660Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:37:32.660Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:38:02.697Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:38:02.697Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:38:02.706Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:38:02.707Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:38:32.725Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:38:32.725Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:38:32.733Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:38:32.733Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:39:02.768Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:39:02.768Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:39:02.781Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:39:02.781Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:39:32.824Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:39:32.825Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:39:32.835Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:39:32.836Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:39:36.157Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T20:39:36.159Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T20:39:36.218Z] error: undefined +[2024-07-26T20:39:36.285Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:39:36.285Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:39:36.297Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:39:36.297Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:39:36.886Z] error: undefined +[2024-07-26T20:39:41.905Z] error: undefined +[2024-07-26T20:39:46.230Z] error: undefined +[2024-07-26T20:39:52.019Z] error: undefined +[2024-07-26T20:40:01.242Z] error: undefined +[2024-07-26T20:40:02.860Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:40:02.860Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:40:02.867Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:40:02.868Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:40:21.253Z] error: undefined +[2024-07-26T20:40:32.888Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:40:32.891Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:40:32.901Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:40:32.902Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:40:47.267Z] error: undefined +[2024-07-26T20:41:02.949Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:41:02.949Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:41:02.960Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:41:02.960Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:41:33.188Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:41:33.189Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:41:33.198Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:41:33.199Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:41:42.391Z] error: undefined +[2024-07-26T20:41:56.260Z] error: undefined +[2024-07-26T20:42:03.356Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:42:03.356Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:42:03.365Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:42:03.365Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:42:32.489Z] error: undefined +[2024-07-26T20:42:33.381Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:42:33.381Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:42:33.388Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:42:33.388Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:43:03.433Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:43:03.433Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:43:03.439Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:43:03.439Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:43:16.272Z] error: undefined +[2024-07-26T20:43:33.453Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:43:33.454Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:43:33.460Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:43:33.460Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:44:03.485Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:44:03.486Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:44:03.496Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:44:03.496Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:44:12.678Z] error: undefined +[2024-07-26T20:44:33.555Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:44:33.556Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:44:33.562Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:44:33.562Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:45:03.574Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:45:03.574Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:45:03.581Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:45:03.582Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:45:33.595Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:45:33.596Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:45:33.602Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:45:33.602Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:46:03.630Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:46:03.630Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:46:03.636Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:46:03.636Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:46:33.652Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:46:33.652Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:46:33.659Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:46:33.659Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:47:03.679Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:47:03.679Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:47:03.685Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:47:03.685Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:47:31.281Z] error: undefined +[2024-07-26T20:47:33.702Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:47:33.702Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:47:33.709Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:47:33.709Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:48:03.722Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:48:03.723Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:48:03.729Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:48:03.729Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:48:33.744Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:48:33.744Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:48:33.750Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:48:33.750Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:49:03.710Z] error: undefined +[2024-07-26T20:49:03.763Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:49:03.764Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:49:03.770Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:49:03.771Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:49:33.788Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:49:33.789Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:49:33.798Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:49:33.798Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:50:03.815Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:50:03.816Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:50:03.822Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:50:03.822Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:50:33.840Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:50:33.840Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:50:33.846Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:50:33.847Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:51:03.864Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:51:03.864Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:51:03.870Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:51:03.871Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:51:33.887Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:51:33.887Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:51:33.894Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:51:33.895Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:52:03.918Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:52:03.918Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:52:03.925Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:52:03.925Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:52:34.102Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:52:34.102Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:52:34.105Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:52:34.105Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:53:04.116Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:53:04.116Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:53:04.122Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:53:04.122Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:53:34.134Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:53:34.135Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:53:34.141Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:53:34.141Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:54:04.153Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:54:04.153Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:54:04.160Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:54:04.161Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:54:34.174Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:54:34.174Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:54:34.181Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:54:34.181Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:55:04.196Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:55:04.196Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:55:04.203Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:55:04.203Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:55:32.807Z] error: undefined +[2024-07-26T20:55:34.216Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:55:34.216Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:55:34.222Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:55:34.222Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:55:59.264Z] error: undefined +[2024-07-26T20:56:04.240Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:56:04.240Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:56:04.243Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:56:04.243Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:56:34.259Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:56:34.259Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:56:34.266Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:56:34.266Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:57:04.281Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:57:04.282Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:57:04.288Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:57:04.288Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:57:34.303Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:57:34.303Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:57:34.313Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:57:34.313Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:58:01.168Z] error: undefined +[2024-07-26T20:58:04.328Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:58:04.328Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:58:04.335Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:58:04.335Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:58:34.352Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:58:34.352Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:58:34.358Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:58:34.359Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:59:04.377Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:59:04.377Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:59:04.384Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:59:04.384Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:59:34.404Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:59:34.405Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:59:34.411Z] error: Error calling http://sonarr.host/... +[2024-07-26T20:59:34.412Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T20:59:58.921Z] error: undefined +[2024-07-26T21:00:04.439Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:00:04.439Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:00:04.446Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:00:04.447Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:00:34.478Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:00:34.479Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:00:34.488Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:00:34.488Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:01:04.508Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:01:04.508Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:01:04.519Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:01:04.520Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:01:07.399Z] error: undefined +[2024-07-26T21:01:11.289Z] error: undefined +[2024-07-26T21:01:34.539Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:01:34.539Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:01:34.545Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:01:34.546Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:02:04.560Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:02:04.560Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:02:04.567Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:02:04.567Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:02:34.580Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:02:34.581Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:02:34.587Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:02:34.587Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:03:04.599Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:03:04.600Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:03:04.606Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:03:04.606Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:03:34.621Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:03:34.621Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:03:34.626Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:03:34.626Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:04:04.640Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:04:04.640Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:04:04.646Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:04:04.647Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:04:34.659Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:04:34.660Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:04:34.666Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:04:34.666Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:05:04.681Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:05:04.681Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:05:04.688Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:05:04.689Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:05:04.852Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T21:05:04.856Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T21:05:04.866Z] error: undefined +[2024-07-26T21:05:05.245Z] error: undefined +[2024-07-26T21:05:09.896Z] error: undefined +[2024-07-26T21:05:15.251Z] error: undefined +[2024-07-26T21:05:17.278Z] error: undefined +[2024-07-26T21:05:17.281Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T21:05:17.287Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T21:05:17.321Z] error: undefined +[2024-07-26T21:05:17.323Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:05:17.324Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:05:17.333Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:05:17.333Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:05:22.308Z] error: undefined +[2024-07-26T21:05:27.331Z] error: undefined +[2024-07-26T21:05:29.913Z] error: undefined +[2024-07-26T21:05:30.261Z] error: undefined +[2024-07-26T21:05:32.316Z] error: undefined +[2024-07-26T21:05:34.706Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:05:34.707Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:05:34.715Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:05:34.715Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:05:42.338Z] error: undefined +[2024-07-26T21:06:00.270Z] error: undefined +[2024-07-26T21:06:02.346Z] error: undefined +[2024-07-26T21:06:04.728Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:06:04.729Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:06:04.735Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:06:04.735Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:06:17.515Z] error: undefined +[2024-07-26T21:06:19.931Z] error: undefined +[2024-07-26T21:06:34.746Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:06:34.747Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:06:34.753Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:06:34.753Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:07:04.820Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:07:04.821Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:07:04.827Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:07:04.827Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:07:20.448Z] error: undefined +[2024-07-26T21:07:24.938Z] error: undefined +[2024-07-26T21:07:34.839Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:07:34.839Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:07:34.845Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:07:34.846Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:07:47.352Z] error: undefined +[2024-07-26T21:08:02.522Z] error: undefined +[2024-07-26T21:08:04.861Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:08:04.861Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:08:04.866Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:08:04.866Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:08:34.882Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:08:34.882Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:08:34.888Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:08:34.888Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:08:49.945Z] error: undefined +[2024-07-26T21:09:04.926Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:09:04.927Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:09:04.932Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:09:04.933Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:09:34.948Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:09:34.949Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:09:34.956Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:09:34.957Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:10:04.969Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:10:04.969Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:10:04.972Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:10:04.972Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:10:06.124Z] error: undefined +[2024-07-26T21:10:27.528Z] error: undefined +[2024-07-26T21:10:34.984Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:10:34.984Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:10:34.992Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:10:34.992Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:11:05.018Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:11:05.020Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:11:05.058Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:11:05.058Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:11:32.360Z] error: undefined +[2024-07-26T21:11:35.072Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:11:35.073Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:11:35.080Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:11:35.080Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:12:05.096Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:12:05.096Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:12:05.103Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:12:05.104Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:12:35.129Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:12:35.129Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:12:35.137Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:12:35.138Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:12:41.301Z] error: undefined +[2024-07-26T21:13:05.161Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:13:05.162Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:13:05.165Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:13:05.166Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:13:35.178Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:13:35.178Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:13:35.191Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:13:35.192Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:14:05.204Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:14:05.205Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:14:05.211Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:14:05.211Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:14:12.768Z] error: undefined +[2024-07-26T21:14:35.222Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:14:35.222Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:14:35.225Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:14:35.225Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:15:02.370Z] error: undefined +[2024-07-26T21:15:05.238Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:15:05.238Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:15:05.244Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:15:05.244Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:15:35.257Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:15:35.257Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:15:35.263Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:15:35.263Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:15:59.952Z] error: undefined +[2024-07-26T21:16:05.276Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:16:05.277Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:16:05.283Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:16:05.283Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:16:35.295Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:16:35.295Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:16:35.298Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:16:35.298Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:17:05.314Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:17:05.315Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:17:05.332Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:17:05.332Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:17:31.530Z] error: undefined +[2024-07-26T21:17:35.351Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:17:35.351Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:17:35.359Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:17:35.359Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:18:05.374Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:18:05.374Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:18:05.381Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:18:05.382Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:18:35.397Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:18:35.397Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:18:35.413Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:18:35.414Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:19:05.434Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:19:05.434Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:19:05.442Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:19:05.442Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:19:35.458Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:19:35.458Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:19:35.465Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:19:35.465Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:19:39.270Z] error: undefined +[2024-07-26T21:20:04.122Z] error: undefined +[2024-07-26T21:20:05.479Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:20:05.479Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:20:05.484Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:20:05.485Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:20:07.414Z] error: undefined +[2024-07-26T21:20:35.500Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:20:35.500Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:20:35.507Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:20:35.508Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:21:05.523Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:21:05.524Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:21:05.530Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:21:05.530Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:21:32.382Z] error: undefined +[2024-07-26T21:21:35.543Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:21:35.544Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:21:35.550Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:21:35.550Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:22:05.571Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:22:05.572Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:22:05.579Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:22:05.579Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:22:23.018Z] error: undefined +[2024-07-26T21:22:35.762Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:22:35.763Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:22:35.770Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:22:35.771Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:23:05.786Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:23:05.786Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:23:05.794Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:23:05.794Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:23:21.178Z] error: undefined +[2024-07-26T21:23:35.806Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:23:35.807Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:23:35.812Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:23:35.813Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:24:05.826Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:24:05.826Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:24:05.832Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:24:05.832Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:24:35.847Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:24:35.847Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:24:35.854Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:24:35.854Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:25:05.876Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:25:05.876Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:25:05.882Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:25:05.883Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:25:35.894Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:25:35.894Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:25:35.897Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:25:35.897Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:26:06.092Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:26:06.093Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:26:06.099Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:26:06.099Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:26:36.235Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:26:36.236Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:26:36.244Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:26:36.245Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:27:06.290Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:27:06.290Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:27:06.296Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:27:06.296Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:27:36.309Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:27:36.310Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:27:36.312Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:27:36.313Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:27:54.959Z] error: undefined +[2024-07-26T21:27:58.005Z] error: undefined +[2024-07-26T21:28:06.325Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:28:06.326Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:28:06.332Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:28:06.332Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:28:36.344Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:28:36.344Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:28:36.351Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:28:36.351Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:28:41.538Z] error: undefined +[2024-07-26T21:29:06.369Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:29:06.369Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:29:06.376Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:29:06.376Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:29:36.386Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:29:36.386Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:29:36.393Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:29:36.393Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:30:06.407Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:30:06.408Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:30:06.415Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:30:06.416Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:30:36.438Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:30:36.438Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:30:36.448Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:30:36.448Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:31:06.462Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:31:06.462Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:31:06.465Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:31:06.465Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:31:36.474Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:31:36.474Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:31:36.480Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:31:36.480Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:32:06.493Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:32:06.493Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:32:06.499Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:32:06.499Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:32:36.511Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:32:36.511Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:32:36.517Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:32:36.517Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:33:06.528Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:33:06.529Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:33:06.537Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:33:06.537Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:33:36.549Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:33:36.549Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:33:36.555Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:33:36.556Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:34:06.565Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:34:06.565Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:34:06.572Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:34:06.572Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:34:36.584Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:34:36.584Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:34:36.587Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:34:36.587Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:35:06.600Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:35:06.601Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:35:06.607Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:35:06.608Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:35:28.219Z] error: undefined +[2024-07-26T21:35:36.623Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:35:36.623Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:35:36.629Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:35:36.629Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:36:06.653Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:36:06.653Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:36:06.659Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:36:06.659Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:36:36.672Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:36:36.672Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:36:36.679Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:36:36.679Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:37:06.775Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:37:06.776Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:37:06.784Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:37:06.784Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:37:36.801Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:37:36.802Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:37:36.809Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:37:36.810Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:38:06.824Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:38:06.825Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:38:06.831Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:38:06.831Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:38:21.309Z] error: undefined +[2024-07-26T21:38:36.845Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:38:36.845Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:38:36.852Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:38:36.852Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:39:06.868Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:39:06.868Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:39:06.903Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:39:06.903Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:39:36.919Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:39:36.921Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:39:36.930Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:39:36.930Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:40:06.948Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:40:06.948Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:40:06.954Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:40:06.955Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:40:07.389Z] error: undefined +[2024-07-26T21:40:36.969Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:40:36.970Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:40:36.978Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:40:36.979Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:41:06.994Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:41:06.994Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:41:07.000Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:41:07.001Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:41:37.020Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:41:37.021Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:41:37.027Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:41:37.028Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:41:59.275Z] error: undefined +[2024-07-26T21:42:07.042Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:42:07.042Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:42:07.048Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:42:07.049Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:42:22.875Z] error: undefined +[2024-07-26T21:42:37.061Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:42:37.061Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:42:37.069Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:42:37.069Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:43:07.082Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:43:07.082Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:43:07.089Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:43:07.089Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:43:37.101Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:43:37.101Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:43:37.104Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:43:37.104Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:44:07.115Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:44:07.115Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:44:07.118Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:44:07.118Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:44:37.131Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:44:37.132Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:44:37.138Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:44:37.138Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:45:07.151Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:45:07.151Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:45:07.158Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:45:07.158Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:45:37.171Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:45:37.171Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:45:37.174Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:45:37.174Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:46:07.191Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:46:07.191Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:46:07.198Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:46:07.199Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:46:37.215Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:46:37.215Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:46:37.221Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:46:37.221Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:47:07.235Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:47:07.237Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:47:07.242Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:47:07.243Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:47:37.281Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:47:37.282Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:47:37.287Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:47:37.288Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:48:07.300Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:48:07.300Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:48:07.306Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:48:07.306Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:48:37.317Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:48:37.317Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:48:37.320Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:48:37.320Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:49:07.332Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:49:07.332Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:49:07.339Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:49:07.339Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:49:34.490Z] error: undefined +[2024-07-26T21:49:37.351Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:49:37.352Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:49:37.358Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:49:37.359Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:50:07.369Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:50:07.370Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:50:07.376Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:50:07.376Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:50:23.227Z] error: undefined +[2024-07-26T21:50:37.398Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:50:37.398Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:50:37.408Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:50:37.408Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:50:57.431Z] error: undefined +[2024-07-26T21:51:07.464Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:51:07.465Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:51:07.477Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:51:07.478Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:51:16.393Z] error: undefined +[2024-07-26T21:51:37.510Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:51:37.511Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:51:37.518Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:51:37.518Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:52:07.535Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:52:07.535Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:52:07.543Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:52:07.543Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:52:37.557Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:52:37.558Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:52:37.564Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:52:37.564Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:53:07.578Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:53:07.579Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:53:07.587Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:53:07.588Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:53:37.600Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:53:37.601Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:53:37.608Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:53:37.608Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:53:40.013Z] error: undefined +[2024-07-26T21:54:03.235Z] error: undefined +[2024-07-26T21:54:07.621Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:54:07.621Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:54:07.628Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:54:07.628Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:54:37.644Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:54:37.644Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:54:37.651Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:54:37.651Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:55:07.667Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:55:07.667Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:55:07.677Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:55:07.677Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:55:37.690Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:55:37.690Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:55:37.696Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:55:37.696Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:56:07.720Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:56:07.720Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:56:07.728Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:56:07.728Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:56:37.748Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:56:37.748Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:56:37.755Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:56:37.756Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:57:07.770Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:57:07.770Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:57:07.776Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:57:07.776Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:57:37.789Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:57:37.789Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:57:37.792Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:57:37.792Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:58:07.802Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:58:07.802Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:58:07.808Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:58:07.808Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:58:37.830Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:58:37.830Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:58:37.836Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:58:37.836Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:59:07.848Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:59:07.849Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:59:07.855Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:59:07.855Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:59:21.317Z] error: undefined +[2024-07-26T21:59:37.867Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:59:37.867Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T21:59:37.872Z] error: Error calling http://sonarr.host/... +[2024-07-26T21:59:37.873Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:00:07.885Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:00:07.886Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:00:07.900Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:00:07.901Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:00:37.912Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:00:37.913Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:00:37.918Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:00:37.918Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:01:07.929Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:01:07.929Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:01:07.935Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:01:07.935Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:01:09.769Z] error: undefined +[2024-07-26T22:01:37.946Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:01:37.946Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:01:37.952Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:01:37.953Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:02:07.965Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:02:07.965Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:02:07.968Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:02:07.968Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:02:33.072Z] error: undefined +[2024-07-26T22:02:37.978Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:02:37.978Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:02:37.984Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:02:37.984Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:03:07.398Z] error: undefined +[2024-07-26T22:03:07.997Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:03:07.997Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:03:08.030Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:03:08.030Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:03:19.840Z] error: undefined +[2024-07-26T22:03:19.844Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:03:19.848Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:03:19.872Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:03:19.872Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:03:19.879Z] error: undefined +[2024-07-26T22:03:19.883Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:03:19.884Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:03:24.894Z] error: undefined +[2024-07-26T22:03:29.870Z] error: undefined +[2024-07-26T22:03:38.039Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:03:38.039Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:03:38.047Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:03:38.047Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:03:39.900Z] error: undefined +[2024-07-26T22:03:44.459Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:03:44.461Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:03:44.497Z] error: undefined +[2024-07-26T22:03:44.517Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:03:44.518Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:03:44.525Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:03:44.525Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:03:44.653Z] error: undefined +[2024-07-26T22:03:49.634Z] error: undefined +[2024-07-26T22:03:49.877Z] error: undefined +[2024-07-26T22:03:54.667Z] error: undefined +[2024-07-26T22:03:59.906Z] error: undefined +[2024-07-26T22:04:08.076Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:04:08.077Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:04:08.083Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:04:08.083Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:04:09.640Z] error: undefined +[2024-07-26T22:04:09.673Z] error: undefined +[2024-07-26T22:04:19.888Z] error: undefined +[2024-07-26T22:04:38.108Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:04:38.109Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:04:38.152Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:04:38.153Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:04:39.680Z] error: undefined +[2024-07-26T22:04:59.648Z] error: undefined +[2024-07-26T22:05:08.174Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:05:08.174Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:05:08.190Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:05:08.191Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:05:20.083Z] error: undefined +[2024-07-26T22:05:29.281Z] error: undefined +[2024-07-26T22:05:38.204Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:05:38.205Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:05:38.212Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:05:38.212Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:05:44.912Z] error: undefined +[2024-07-26T22:05:52.446Z] error: undefined +[2024-07-26T22:06:08.221Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:06:08.221Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:06:08.227Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:06:08.228Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:06:19.687Z] error: undefined +[2024-07-26T22:06:38.238Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:06:38.238Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:06:38.241Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:06:38.241Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:06:44.654Z] error: undefined +[2024-07-26T22:07:08.307Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:07:08.308Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:07:08.315Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:07:08.315Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:07:38.328Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:07:38.328Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:07:38.334Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:07:38.334Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:08:05.434Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:08:05.457Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:08:05.491Z] error: undefined +[2024-07-26T22:08:05.492Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:08:05.492Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:08:05.510Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:08:05.510Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:08:05.826Z] error: undefined +[2024-07-26T22:08:08.348Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:08:08.349Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:08:08.356Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:08:08.357Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:08:14.919Z] error: undefined +[2024-07-26T22:08:15.498Z] error: undefined +[2024-07-26T22:08:15.834Z] error: undefined +[2024-07-26T22:08:25.840Z] error: undefined +[2024-07-26T22:08:35.505Z] error: undefined +[2024-07-26T22:08:38.366Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:08:38.366Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:08:38.372Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:08:38.372Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:08:44.698Z] error: undefined +[2024-07-26T22:08:50.088Z] error: undefined +[2024-07-26T22:08:51.790Z] error: undefined +[2024-07-26T22:08:51.793Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:08:51.796Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:08:51.813Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:08:51.817Z] error: undefined +[2024-07-26T22:08:51.813Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:08:51.821Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:08:51.821Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:08:55.511Z] error: undefined +[2024-07-26T22:08:55.846Z] error: undefined +[2024-07-26T22:09:01.802Z] error: undefined +[2024-07-26T22:09:01.822Z] error: undefined +[2024-07-26T22:09:08.384Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:09:08.384Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:09:08.391Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:09:08.391Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:09:11.829Z] error: undefined +[2024-07-26T22:09:12.020Z] error: undefined +[2024-07-26T22:09:15.352Z] error: undefined +[2024-07-26T22:09:15.376Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:09:15.379Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:09:15.402Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:09:15.402Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:09:15.408Z] error: undefined +[2024-07-26T22:09:15.410Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:09:15.410Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:09:20.417Z] error: undefined +[2024-07-26T22:09:25.382Z] error: undefined +[2024-07-26T22:09:35.388Z] error: undefined +[2024-07-26T22:09:35.423Z] error: undefined +[2024-07-26T22:09:38.403Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:09:38.404Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:09:38.410Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:09:38.410Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:09:45.852Z] error: undefined +[2024-07-26T22:09:56.834Z] error: undefined +[2024-07-26T22:09:59.659Z] error: undefined +[2024-07-26T22:10:02.027Z] error: undefined +[2024-07-26T22:10:08.421Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:10:08.422Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:10:08.424Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:10:08.424Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:10:20.517Z] error: undefined +[2024-07-26T22:10:25.482Z] error: undefined +[2024-07-26T22:10:25.598Z] error: undefined +[2024-07-26T22:10:38.436Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:10:38.436Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:10:38.443Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:10:38.443Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:10:53.964Z] error: undefined +[2024-07-26T22:10:53.979Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:10:53.983Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:10:54.010Z] error: undefined +[2024-07-26T22:10:54.010Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:10:54.011Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:10:54.024Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:10:54.024Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:11:03.785Z] error: undefined +[2024-07-26T22:11:03.791Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:11:03.794Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:11:03.820Z] error: undefined +[2024-07-26T22:11:03.841Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:11:03.843Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:11:03.851Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:11:03.852Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:11:04.033Z] error: undefined +[2024-07-26T22:11:04.926Z] error: undefined +[2024-07-26T22:11:05.859Z] error: undefined +[2024-07-26T22:11:08.456Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:11:08.456Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:11:08.459Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:11:08.459Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:11:09.008Z] error: undefined +[2024-07-26T22:11:11.323Z] error: undefined +[2024-07-26T22:11:12.033Z] error: undefined +[2024-07-26T22:11:14.013Z] error: undefined +[2024-07-26T22:11:14.042Z] error: undefined +[2024-07-26T22:11:25.607Z] error: undefined +[2024-07-26T22:11:29.023Z] error: undefined +[2024-07-26T22:11:34.020Z] error: undefined +[2024-07-26T22:11:34.051Z] error: undefined +[2024-07-26T22:11:38.486Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:11:38.486Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:11:38.492Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:11:38.492Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:11:51.839Z] error: undefined +[2024-07-26T22:11:55.488Z] error: undefined +[2024-07-26T22:12:04.026Z] error: undefined +[2024-07-26T22:12:08.508Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:12:08.508Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:12:08.514Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:12:08.515Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:12:14.029Z] error: undefined +[2024-07-26T22:12:38.524Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:12:38.525Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:12:38.527Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:12:38.528Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:12:44.889Z] error: undefined +[2024-07-26T22:12:50.522Z] error: undefined +[2024-07-26T22:12:56.416Z] error: undefined +[2024-07-26T22:13:04.128Z] error: undefined +[2024-07-26T22:13:04.148Z] error: undefined +[2024-07-26T22:13:08.537Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:13:08.538Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:13:08.545Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:13:08.545Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:13:14.075Z] error: undefined +[2024-07-26T22:13:38.558Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:13:38.558Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:13:38.564Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:13:38.564Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:13:46.257Z] error: undefined +[2024-07-26T22:13:59.666Z] error: undefined +[2024-07-26T22:14:05.094Z] error: undefined +[2024-07-26T22:14:08.575Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:14:08.575Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:14:08.582Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:14:08.582Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:14:11.845Z] error: undefined +[2024-07-26T22:14:25.493Z] error: undefined +[2024-07-26T22:14:37.040Z] error: undefined +[2024-07-26T22:14:37.151Z] error: undefined +[2024-07-26T22:14:37.153Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:14:37.155Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:14:37.186Z] error: undefined +[2024-07-26T22:14:37.193Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:14:37.193Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:14:37.201Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:14:37.202Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:14:40.613Z] error: undefined +[2024-07-26T22:14:42.203Z] error: undefined +[2024-07-26T22:14:47.358Z] error: undefined +[2024-07-26T22:15:02.367Z] error: undefined +[2024-07-26T22:15:03.549Z] error: undefined +[2024-07-26T22:15:03.572Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:15:03.575Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:15:03.581Z] error: undefined +[2024-07-26T22:15:03.609Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:15:03.609Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:15:03.617Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:15:03.618Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:15:04.086Z] error: undefined +[2024-07-26T22:15:07.225Z] error: undefined +[2024-07-26T22:15:08.568Z] error: undefined +[2024-07-26T22:15:08.595Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:15:08.596Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:15:08.607Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:15:08.607Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:15:08.642Z] error: undefined +[2024-07-26T22:15:18.652Z] error: undefined +[2024-07-26T22:15:27.233Z] error: undefined +[2024-07-26T22:15:28.575Z] error: undefined +[2024-07-26T22:15:34.178Z] error: undefined +[2024-07-26T22:15:38.621Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:15:38.622Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:15:38.628Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:15:38.629Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:15:38.660Z] error: undefined +[2024-07-26T22:15:47.557Z] error: undefined +[2024-07-26T22:15:53.580Z] error: undefined +[2024-07-26T22:15:59.178Z] error: undefined +[2024-07-26T22:16:08.641Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:16:08.641Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:16:08.647Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:16:08.647Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:16:33.587Z] error: undefined +[2024-07-26T22:16:37.239Z] error: undefined +[2024-07-26T22:16:38.660Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:16:38.660Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:16:38.666Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:16:38.667Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:16:58.670Z] error: undefined +[2024-07-26T22:17:05.027Z] error: undefined +[2024-07-26T22:17:08.705Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:17:08.705Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:17:08.712Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:17:08.712Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:17:17.229Z] error: undefined +[2024-07-26T22:17:32.006Z] error: undefined +[2024-07-26T22:17:32.009Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:17:32.012Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:17:32.055Z] error: undefined +[2024-07-26T22:17:32.071Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:17:32.071Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:17:32.076Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:17:32.077Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:17:32.567Z] error: undefined +[2024-07-26T22:17:38.723Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:17:38.724Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:17:38.731Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:17:38.731Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:17:42.042Z] error: undefined +[2024-07-26T22:17:42.075Z] error: undefined +[2024-07-26T22:17:57.052Z] error: undefined +[2024-07-26T22:17:57.085Z] error: undefined +[2024-07-26T22:18:08.745Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:18:08.745Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:18:08.752Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:18:08.752Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:18:12.246Z] error: undefined +[2024-07-26T22:18:17.111Z] error: undefined +[2024-07-26T22:18:30.502Z] error: undefined +[2024-07-26T22:18:37.509Z] error: undefined +[2024-07-26T22:18:38.768Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:18:38.768Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:18:38.778Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:18:38.778Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:18:42.260Z] error: undefined +[2024-07-26T22:18:57.592Z] error: undefined +[2024-07-26T22:19:08.802Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:19:08.802Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:19:08.812Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:19:08.813Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:19:12.123Z] error: undefined +[2024-07-26T22:19:14.186Z] error: undefined +[2024-07-26T22:19:14.943Z] error: undefined +[2024-07-26T22:19:33.595Z] error: undefined +[2024-07-26T22:19:38.832Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:19:38.832Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:19:38.839Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:19:38.839Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:19:41.265Z] error: undefined +[2024-07-26T22:20:08.851Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:20:08.851Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:20:08.858Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:20:08.858Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:20:09.097Z] error: undefined +[2024-07-26T22:20:15.529Z] error: undefined +[2024-07-26T22:20:23.680Z] error: undefined +[2024-07-26T22:20:23.735Z] error: undefined +[2024-07-26T22:20:28.244Z] error: undefined +[2024-07-26T22:20:38.874Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:20:38.874Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:20:38.883Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:20:38.883Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:20:44.205Z] error: undefined +[2024-07-26T22:20:55.636Z] error: undefined +[2024-07-26T22:21:08.900Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:21:08.900Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:21:08.906Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:21:08.906Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:21:32.156Z] error: undefined +[2024-07-26T22:21:38.416Z] error: undefined +[2024-07-26T22:21:38.934Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:21:38.934Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:21:38.943Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:21:38.944Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:21:46.852Z] error: undefined +[2024-07-26T22:22:09.171Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:22:09.171Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:22:09.178Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:22:09.178Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:22:13.078Z] error: undefined +[2024-07-26T22:22:39.195Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:22:39.196Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:22:39.201Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:22:39.202Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:22:57.259Z] error: undefined +[2024-07-26T22:22:58.816Z] error: undefined +[2024-07-26T22:23:09.218Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:23:09.218Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:23:09.224Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:23:09.224Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:23:23.742Z] error: undefined +[2024-07-26T22:23:39.237Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:23:39.237Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:23:39.244Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:23:39.244Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:23:41.348Z] error: undefined +[2024-07-26T22:23:54.672Z] error: undefined +[2024-07-26T22:24:09.275Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:24:09.275Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:24:09.286Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:24:09.286Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:24:17.177Z] error: undefined +[2024-07-26T22:24:22.584Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:24:22.589Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:24:22.633Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:24:22.633Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:24:22.646Z] error: undefined +[2024-07-26T22:24:22.665Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:24:22.665Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:24:22.807Z] error: undefined +[2024-07-26T22:24:29.289Z] error: undefined +[2024-07-26T22:24:39.308Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:24:39.308Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:24:39.318Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:24:39.318Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:25:09.337Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:25:09.337Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:25:09.343Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:25:09.343Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:25:25.686Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:25:25.690Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:25:25.730Z] error: undefined +[2024-07-26T22:25:25.770Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:25:25.771Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:25:25.778Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:25:25.778Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:25:26.518Z] error: undefined +[2024-07-26T22:25:30.770Z] error: undefined +[2024-07-26T22:25:31.529Z] error: undefined +[2024-07-26T22:25:33.986Z] error: undefined +[2024-07-26T22:25:33.995Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:25:34.003Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:25:34.041Z] error: undefined +[2024-07-26T22:25:34.062Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:25:34.062Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:25:34.071Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:25:34.073Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:25:35.115Z] error: undefined +[2024-07-26T22:25:39.072Z] error: undefined +[2024-07-26T22:25:39.239Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:25:39.242Z] error: undefined +[2024-07-26T22:25:39.245Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:25:39.269Z] error: undefined +[2024-07-26T22:25:39.271Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:25:39.271Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:25:39.281Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:25:39.282Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:25:40.969Z] error: undefined +[2024-07-26T22:25:41.540Z] error: undefined +[2024-07-26T22:25:44.052Z] error: undefined +[2024-07-26T22:25:48.687Z] error: undefined +[2024-07-26T22:25:49.185Z] error: undefined +[2024-07-26T22:25:49.249Z] error: undefined +[2024-07-26T22:25:49.283Z] error: undefined +[2024-07-26T22:25:54.061Z] error: undefined +[2024-07-26T22:25:59.256Z] error: undefined +[2024-07-26T22:26:04.290Z] error: undefined +[2024-07-26T22:26:09.548Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:26:09.548Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:26:09.555Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:26:09.555Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:26:10.985Z] error: undefined +[2024-07-26T22:26:19.197Z] error: undefined +[2024-07-26T22:26:24.299Z] error: undefined +[2024-07-26T22:26:36.751Z] error: undefined +[2024-07-26T22:26:39.266Z] error: undefined +[2024-07-26T22:26:39.587Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:26:39.587Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:26:39.598Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:26:39.599Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:26:44.084Z] error: undefined +[2024-07-26T22:26:47.623Z] error: undefined +[2024-07-26T22:26:49.896Z] error: undefined +[2024-07-26T22:27:09.650Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:27:09.650Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:27:09.659Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:27:09.659Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:27:14.222Z] error: undefined +[2024-07-26T22:27:24.311Z] error: undefined +[2024-07-26T22:27:34.092Z] error: undefined +[2024-07-26T22:27:34.208Z] error: undefined +[2024-07-26T22:27:36.061Z] error: undefined +[2024-07-26T22:27:37.029Z] error: undefined +[2024-07-26T22:27:39.675Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:27:39.675Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:27:39.685Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:27:39.685Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:27:54.274Z] error: undefined +[2024-07-26T22:28:09.701Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:28:09.702Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:28:09.708Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:28:09.708Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:28:15.509Z] error: undefined +[2024-07-26T22:28:39.730Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:28:39.730Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:28:39.736Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:28:39.737Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:28:43.945Z] error: undefined +[2024-07-26T22:28:54.102Z] error: undefined +[2024-07-26T22:29:09.753Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:29:09.753Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:29:09.760Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:29:09.760Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:29:34.220Z] error: undefined +[2024-07-26T22:29:39.280Z] error: undefined +[2024-07-26T22:29:39.778Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:29:39.778Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:29:39.784Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:29:39.784Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:29:42.560Z] error: undefined +[2024-07-26T22:30:00.830Z] error: undefined +[2024-07-26T22:30:07.237Z] error: undefined +[2024-07-26T22:30:09.797Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:30:09.799Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:30:09.803Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:30:09.804Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:30:24.321Z] error: undefined +[2024-07-26T22:30:27.045Z] error: undefined +[2024-07-26T22:30:39.819Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:30:39.820Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:30:39.826Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:30:39.827Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:31:09.840Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:31:09.841Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:31:09.847Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:31:09.847Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:31:21.112Z] error: undefined +[2024-07-26T22:31:22.403Z] error: undefined +[2024-07-26T22:31:39.882Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:31:39.882Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:31:39.888Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:31:39.888Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:32:09.904Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:32:09.904Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:32:09.911Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:32:09.911Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:32:10.005Z] error: undefined +[2024-07-26T22:32:39.930Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:32:39.930Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:32:39.939Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:32:39.939Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:32:53.696Z] error: undefined +[2024-07-26T22:33:09.956Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:33:09.957Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:33:09.963Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:33:09.964Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:33:21.861Z] error: undefined +[2024-07-26T22:33:40.008Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:33:40.008Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:33:40.014Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:33:40.014Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:34:10.029Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:34:10.029Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:34:10.035Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:34:10.035Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:34:14.195Z] error: undefined +[2024-07-26T22:34:14.332Z] error: undefined +[2024-07-26T22:34:19.104Z] error: undefined +[2024-07-26T22:34:29.525Z] error: undefined +[2024-07-26T22:34:40.050Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:34:40.050Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:34:40.057Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:34:40.057Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:35:07.186Z] error: undefined +[2024-07-26T22:35:10.070Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:35:10.070Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:35:10.077Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:35:10.077Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:35:15.537Z] error: undefined +[2024-07-26T22:35:40.091Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:35:40.092Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:35:40.099Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:35:40.100Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:35:44.012Z] error: undefined +[2024-07-26T22:35:52.269Z] error: undefined +[2024-07-26T22:35:55.539Z] error: undefined +[2024-07-26T22:35:55.556Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:35:55.560Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:35:55.581Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:35:55.582Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:35:55.591Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:35:55.591Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:35:55.595Z] error: undefined +[2024-07-26T22:35:59.110Z] error: undefined +[2024-07-26T22:36:05.642Z] error: undefined +[2024-07-26T22:36:05.657Z] error: undefined +[2024-07-26T22:36:10.115Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:10.116Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:10.122Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:10.122Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:15.086Z] error: undefined +[2024-07-26T22:36:15.091Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:36:15.093Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:36:15.128Z] error: undefined +[2024-07-26T22:36:15.144Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:15.144Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:15.153Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:15.153Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:20.671Z] error: undefined +[2024-07-26T22:36:21.273Z] error: undefined +[2024-07-26T22:36:21.277Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:36:21.282Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:36:21.324Z] error: undefined +[2024-07-26T22:36:21.325Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:21.325Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:21.336Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:21.336Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:25.114Z] error: undefined +[2024-07-26T22:36:25.141Z] error: undefined +[2024-07-26T22:36:30.654Z] error: undefined +[2024-07-26T22:36:31.303Z] error: undefined +[2024-07-26T22:36:31.337Z] error: undefined +[2024-07-26T22:36:35.149Z] error: undefined +[2024-07-26T22:36:40.137Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:40.137Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:40.150Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:40.151Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:41.312Z] error: undefined +[2024-07-26T22:36:41.351Z] error: undefined +[2024-07-26T22:36:44.931Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:36:44.935Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:36:44.973Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:44.973Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:44.981Z] error: undefined +[2024-07-26T22:36:44.982Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:44.982Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:45.098Z] error: undefined +[2024-07-26T22:36:47.052Z] error: undefined +[2024-07-26T22:36:50.008Z] error: undefined +[2024-07-26T22:36:50.134Z] error: undefined +[2024-07-26T22:36:55.106Z] error: undefined +[2024-07-26T22:36:55.662Z] error: undefined +[2024-07-26T22:36:59.635Z] error: undefined +[2024-07-26T22:36:59.653Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:36:59.655Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:36:59.681Z] error: undefined +[2024-07-26T22:36:59.694Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:59.694Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:36:59.703Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:36:59.704Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:37:00.039Z] error: undefined +[2024-07-26T22:37:04.712Z] error: undefined +[2024-07-26T22:37:06.367Z] error: undefined +[2024-07-26T22:37:09.679Z] error: undefined +[2024-07-26T22:37:10.112Z] error: undefined +[2024-07-26T22:37:10.156Z] error: undefined +[2024-07-26T22:37:10.168Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:37:10.168Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:37:10.174Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:37:10.175Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:37:14.230Z] error: undefined +[2024-07-26T22:37:14.720Z] error: undefined +[2024-07-26T22:37:15.201Z] error: undefined +[2024-07-26T22:37:15.680Z] error: undefined +[2024-07-26T22:37:29.687Z] error: undefined +[2024-07-26T22:37:31.318Z] error: undefined +[2024-07-26T22:37:31.423Z] error: undefined +[2024-07-26T22:37:35.119Z] error: undefined +[2024-07-26T22:37:35.670Z] error: undefined +[2024-07-26T22:37:40.186Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:37:40.186Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:37:40.193Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:37:40.193Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:37:42.632Z] error: undefined +[2024-07-26T22:37:44.727Z] error: undefined +[2024-07-26T22:37:46.387Z] error: undefined +[2024-07-26T22:37:55.072Z] error: undefined +[2024-07-26T22:38:00.165Z] error: undefined +[2024-07-26T22:38:10.225Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:38:10.225Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:38:10.231Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:38:10.231Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:38:14.435Z] error: undefined +[2024-07-26T22:38:14.679Z] error: undefined +[2024-07-26T22:38:14.695Z] error: undefined +[2024-07-26T22:38:15.128Z] error: undefined +[2024-07-26T22:38:24.735Z] error: undefined +[2024-07-26T22:38:40.210Z] error: undefined +[2024-07-26T22:38:40.251Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:38:40.251Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:38:40.261Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:38:40.261Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:38:45.686Z] error: undefined +[2024-07-26T22:38:46.121Z] error: undefined +[2024-07-26T22:38:48.086Z] error: undefined +[2024-07-26T22:38:56.328Z] error: undefined +[2024-07-26T22:39:10.080Z] error: undefined +[2024-07-26T22:39:10.277Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:39:10.278Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:39:10.282Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:39:10.283Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:39:35.895Z] error: undefined +[2024-07-26T22:39:39.904Z] error: undefined +[2024-07-26T22:39:40.299Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:39:40.299Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:39:40.306Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:39:40.306Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:39:59.831Z] error: undefined +[2024-07-26T22:40:04.704Z] error: undefined +[2024-07-26T22:40:10.334Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:40:10.334Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:40:10.341Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:40:10.341Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:40:32.569Z] error: undefined +[2024-07-26T22:40:40.357Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:40:40.357Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:40:40.366Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:40:40.367Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:40:46.395Z] error: undefined +[2024-07-26T22:40:55.395Z] error: undefined +[2024-07-26T22:41:00.696Z] error: undefined +[2024-07-26T22:41:10.380Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:41:10.381Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:41:10.387Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:41:10.387Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:41:15.087Z] error: undefined +[2024-07-26T22:41:26.337Z] error: undefined +[2024-07-26T22:41:34.297Z] error: undefined +[2024-07-26T22:41:35.137Z] error: undefined +[2024-07-26T22:41:35.176Z] error: undefined +[2024-07-26T22:41:40.404Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:41:40.404Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:41:40.412Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:41:40.412Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:42:10.446Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:42:10.447Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:42:10.457Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:42:10.457Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:42:33.426Z] error: undefined +[2024-07-26T22:42:40.036Z] error: undefined +[2024-07-26T22:42:40.495Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:42:40.496Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:42:40.504Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:42:40.504Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:42:54.956Z] error: undefined +[2024-07-26T22:43:10.567Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:43:10.568Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:43:10.578Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:43:10.579Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:43:14.552Z] error: undefined +[2024-07-26T22:43:24.711Z] error: undefined +[2024-07-26T22:43:40.654Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:43:40.654Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:43:40.667Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:43:40.668Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:43:56.404Z] error: undefined +[2024-07-26T22:44:10.693Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:44:10.693Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:44:10.701Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:44:10.701Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:44:15.772Z] error: undefined +[2024-07-26T22:44:29.863Z] error: undefined +[2024-07-26T22:44:35.902Z] error: undefined +[2024-07-26T22:44:40.716Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:44:40.716Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:44:40.722Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:44:40.722Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:44:51.347Z] error: undefined +[2024-07-26T22:45:10.755Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:45:10.755Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:45:10.766Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:45:10.766Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:45:15.704Z] error: undefined +[2024-07-26T22:45:31.471Z] error: undefined +[2024-07-26T22:45:40.784Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:45:40.784Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:45:40.792Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:45:40.792Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:46:05.838Z] error: undefined +[2024-07-26T22:46:10.809Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:46:10.809Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:46:10.817Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:46:10.817Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:46:33.703Z] error: undefined +[2024-07-26T22:46:40.835Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:46:40.835Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:46:40.841Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:46:40.841Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:47:09.346Z] error: undefined +[2024-07-26T22:47:10.859Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:47:10.859Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:47:10.866Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:47:10.866Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:47:15.183Z] error: undefined +[2024-07-26T22:47:40.898Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:47:40.899Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:47:40.908Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:47:40.909Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:47:44.237Z] error: undefined +[2024-07-26T22:47:55.094Z] error: undefined +[2024-07-26T22:48:10.938Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:48:10.938Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:48:10.945Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:48:10.946Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:48:24.925Z] error: undefined +[2024-07-26T22:48:40.963Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:48:40.963Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:48:40.969Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:48:40.970Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:49:02.249Z] error: undefined +[2024-07-26T22:49:10.994Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:49:10.994Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:49:11.004Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:49:11.004Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:49:15.145Z] error: undefined +[2024-07-26T22:49:41.024Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:49:41.024Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:49:41.033Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:49:41.033Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:50:01.363Z] error: undefined +[2024-07-26T22:50:11.179Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:50:11.179Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:50:11.188Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:50:11.188Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:50:13.466Z] error: undefined +[2024-07-26T22:50:41.209Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:50:41.209Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:50:41.219Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:50:41.220Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:51:11.237Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:51:11.238Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:51:11.247Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:51:11.247Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:51:21.146Z] error: undefined +[2024-07-26T22:51:29.298Z] error: undefined +[2024-07-26T22:51:29.912Z] error: undefined +[2024-07-26T22:51:39.882Z] error: undefined +[2024-07-26T22:51:41.263Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:51:41.263Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:51:41.272Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:51:41.272Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:51:51.883Z] error: undefined +[2024-07-26T22:52:11.284Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:52:11.285Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:52:11.294Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:52:11.294Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:52:16.432Z] error: undefined +[2024-07-26T22:52:17.063Z] error: undefined +[2024-07-26T22:52:20.140Z] error: undefined +[2024-07-26T22:52:29.688Z] error: undefined +[2024-07-26T22:52:31.428Z] error: undefined +[2024-07-26T22:52:38.623Z] error: undefined +[2024-07-26T22:52:41.309Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:52:41.309Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:52:41.315Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:52:41.315Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:53:02.193Z] error: undefined +[2024-07-26T22:53:11.344Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:53:11.344Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:53:11.357Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:53:11.358Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:53:41.389Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:53:41.389Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:53:41.398Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:53:41.398Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:53:50.716Z] error: undefined +[2024-07-26T22:54:11.420Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:54:11.420Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:54:11.428Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:54:11.428Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:54:24.411Z] error: undefined +[2024-07-26T22:54:41.445Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:54:41.445Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:54:41.451Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:54:41.451Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:55:11.485Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:55:11.486Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:55:11.496Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:55:11.496Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:55:25.499Z] error: undefined +[2024-07-26T22:55:41.520Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:55:41.520Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:55:41.525Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:55:41.525Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:56:11.546Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:56:11.547Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:56:11.553Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:56:11.553Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:56:29.251Z] error: undefined +[2024-07-26T22:56:35.546Z] error: undefined +[2024-07-26T22:56:41.569Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:56:41.569Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:56:41.576Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:56:41.576Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:56:52.410Z] error: undefined +[2024-07-26T22:56:55.120Z] error: undefined +[2024-07-26T22:56:55.122Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/status/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:56:55.150Z] error: TypeError: Cannot read properties of null (reading 'other-server') + at getDockerArguments (/app/.next/server/chunks/9943.js:44:14) + at handler (/app/.next/server/pages/api/docker/stats/[...service].js:88:96) + at Object.apiResolver (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/api-utils/node.js:366:15) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) + at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:481:9) + at async Object.fn (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/next-server.js:741:37) + at async Router.execute (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/router.js:252:36) + at async NextNodeServer.run (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:365:29) + at async NextNodeServer.handleRequest (/app/node_modules/.pnpm/next@12.3.4_react-dom@18.2.0_react@18.3.1/node_modules/next/dist/server/base-server.js:303:20) + at async Server. (/app/server.js:19:5) +[2024-07-26T22:56:55.155Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:56:55.155Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:56:55.170Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:56:55.171Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:56:55.182Z] error: undefined +[2024-07-26T22:57:00.150Z] error: undefined +[2024-07-26T22:57:05.201Z] error: undefined +[2024-07-26T22:57:11.591Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:57:11.591Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:57:11.597Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:57:11.598Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:57:15.166Z] error: undefined +[2024-07-26T22:57:20.215Z] error: undefined +[2024-07-26T22:57:25.910Z] error: undefined +[2024-07-26T22:57:36.016Z] error: undefined +[2024-07-26T22:57:40.225Z] error: undefined +[2024-07-26T22:57:41.613Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:57:41.614Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:57:41.620Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:57:41.620Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:58:00.185Z] error: undefined +[2024-07-26T22:58:11.636Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:58:11.636Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:58:11.644Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:58:11.644Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:58:41.658Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:58:41.659Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] +[2024-07-26T22:58:41.665Z] error: Error calling http://sonarr.host/... +[2024-07-26T22:58:41.665Z] error: [ + 500, + Error: getaddrinfo ENOTFOUND sonarr.host + at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:118:26) { + errno: -3008, + code: 'ENOTFOUND', + syscall: 'getaddrinfo', + hostname: 'sonarr.host' + } +] diff --git a/homepage/services.yaml b/homepage/services.yaml new file mode 100755 index 0000000..31d24c7 --- /dev/null +++ b/homepage/services.yaml @@ -0,0 +1,38 @@ +- Group A: + - Sonarr: + icon: sonarr.png + href: http://sonarr.host/ + description: Series management + +- Group B: + - Radarr: + icon: radarr.png + href: http://radarr.host/ + description: Movie management + siteMonitor: http://sonarr.host/ + +- Group C: + - Service: + icon: mdi-flask-outline + href: http://service.host/ + description: My cool service + ping: some.other.host + +- Docker: + - Portainer: + href: http://localhost/ + description: This is another service + server: other-server + container: other-container + +- Media: + - Plex: + id: 100 + icon: plex.png + href: + container: plex + widget: + type: plex + fields: ["streams", "movies", "tv"] + url: + key: #plex-token diff --git a/homepage/settings.yaml b/homepage/settings.yaml new file mode 100755 index 0000000..2fbf3d0 --- /dev/null +++ b/homepage/settings.yaml @@ -0,0 +1,44 @@ +providers: + openweathermap: openweathermapapikey + weatherapi: weatherapiapikey + finnhub: yourfinnhubapikeyhere + +title: Homepage + +background: + image: https://images.pexels.com/photos/1624496/pexels-photo-1624496.jpeg + #image: /images/background.png + #blur: sm # sm, "", md, xl... see https://tailwindcss.com/docs/backdrop-blur + saturate: 50 # 0, 50, 100... see https://tailwindcss.com/docs/backdrop-saturate + brightness: 50 # 0, 50, 75... see https://tailwindcss.com/docs/backdrop-brightness + opacity: 30 # 0-100 + cardBlur: md # sm, "", md, etc... see https://tailwindcss.com/docs/backdrop-blur + +layout: + Media: + style: row + columns: 5 + Data: + style: row + columns: 2 + header: false + Downloads: + style: row + columns: 4 + +quicklaunch: + searchDescriptions: true + hideInternetSearch: true + showSearchSuggestions: false + hideVisitURL: false + provider: google + +hideVersion: false + +showStats: true # Show Docker Stats + +useEqualHeights: true +color: slate +statusStyle: "dot" +disableCollapse: true +headerStyle: clean diff --git a/homepage/widgets.yaml b/homepage/widgets.yaml new file mode 100755 index 0000000..df54110 --- /dev/null +++ b/homepage/widgets.yaml @@ -0,0 +1,35 @@ +- datetime: + text_size: xl + format: + timeStyle: short + +- resources: + cpu: true + memory: true + disk: /disk/mount/path + cputemp: true + tempmin: 0 # optional, minimum cpu temp + tempmax: 100 # optional, maximum cpu temp + uptime: true + units: metric # only used by cpu temp + refresh: 3000 # optional, in ms + diskUnits: bytes # optional, bytes (default) or bbytes. Only applies to disk + +- stocks: + provider: finnhub + color: true # optional, defaults to true + cache: 1 # optional, default caches results for 1 minute + watchlist: + - GME + - AMC + - NVDA + - AMD + - TSM + - MSFT + - AAPL + - BRK.A + +widget: + type: uptimekuma + url: http://uptimekuma.host.or.ip:port + slug: statuspageslug diff --git a/lxc.md b/lxc.md index 0b7e5c2..3f7ce62 100644 --- a/lxc.md +++ b/lxc.md @@ -1,43 +1,27 @@ -## Creating LXC +# LXC Containers -When creating LXC, make sure to unflag "Unprivileged container" to avoid permission issues. Also, after creating the container, make sure to enable "Nesting" in the options screen before starting the container. +A Linux container is a set of one or more processes that are isolated from the rest of the system. All the processes in a container share the same kernel, but each container has its own file system, network interfaces, and process space. -`LXC` > `Options` > `Features` > `Nesting` +This page contains information on how to create and manage LXC containers on Proxmox VE using Scripts. -## Update and Upgrade +## Alpine LXC -Before using LXC containers, it is recommended to update and upgrade the container's packages. This is done by running the following commands: +A security-oriented, lightweight Linux distribution based on musl and BusyBox. +By default, the root password is set to alpine. If you choose to use advanced settings, you will need to define a password, autologin is currently unavailable. +To create a new Proxmox VE Alpine LXC, run the command below in the Proxmox VE Shell. ```bash -apt update && apt full-upgrade -y +bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/alpine.sh)" ``` -## LXC Configuration +> Default Password `alpine` +> To Update Alpine `apk update && apk upgrade` -In some cases, it is necessary to configure the LXC container to allow access to the host's directories if you are using privileged containers. +## Debian LXC -To do this, follow the steps below: - -Go to the PVE web interface and enable the following options: +Debian Linux is a distribution that emphasizes free software. It supports many hardware platforms. +To create a new Proxmox VE Debian LXC, run the command below in the Proxmox VE Shell. ```bash -nano /etc/pve/lxc/100.conf +bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/debian.sh)" ``` - -> .conf must be the container ID - -Add the following line to the file `lxc.apparmor.profile: unconfined`; - -## LXC Mount Points - -To add mount points to the container, add the following line to the container's configuration file: - -```bash -nano /etc/pve/lxc/100.conf -``` -and add `mp0:/sg0/nas,mp=/mnt/nas` after the `net0` line. This will link host directory to container directory. - -## List of Services - -- [Cockpit](cockpit.md) - Web-based server manager that makes it easy to administer your GNU/Linux servers via a web browser. - diff --git a/cockpit.md b/nas/cockpit.md similarity index 100% rename from cockpit.md rename to nas/cockpit.md diff --git a/nas/lxc.md b/nas/lxc.md new file mode 100644 index 0000000..0b7e5c2 --- /dev/null +++ b/nas/lxc.md @@ -0,0 +1,43 @@ +## Creating LXC + +When creating LXC, make sure to unflag "Unprivileged container" to avoid permission issues. Also, after creating the container, make sure to enable "Nesting" in the options screen before starting the container. + +`LXC` > `Options` > `Features` > `Nesting` + +## Update and Upgrade + +Before using LXC containers, it is recommended to update and upgrade the container's packages. This is done by running the following commands: + +```bash +apt update && apt full-upgrade -y +``` + +## LXC Configuration + +In some cases, it is necessary to configure the LXC container to allow access to the host's directories if you are using privileged containers. + +To do this, follow the steps below: + +Go to the PVE web interface and enable the following options: + +```bash +nano /etc/pve/lxc/100.conf +``` + +> .conf must be the container ID + +Add the following line to the file `lxc.apparmor.profile: unconfined`; + +## LXC Mount Points + +To add mount points to the container, add the following line to the container's configuration file: + +```bash +nano /etc/pve/lxc/100.conf +``` +and add `mp0:/sg0/nas,mp=/mnt/nas` after the `net0` line. This will link host directory to container directory. + +## List of Services + +- [Cockpit](cockpit.md) - Web-based server manager that makes it easy to administer your GNU/Linux servers via a web browser. + diff --git a/ntfy.md b/ntfy.md index 21e4172..5caf1dc 100644 --- a/ntfy.md +++ b/ntfy.md @@ -1 +1,7 @@ +# ntfy + +Docs: https://ntfy.readthedocs.io/en/latest/ + +```bash bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/ntfy.sh)" +``` diff --git a/pass-throught.md b/pass-throught.md new file mode 100644 index 0000000..346148c --- /dev/null +++ b/pass-throught.md @@ -0,0 +1,3 @@ +https://www.reddit.com/r/homelab/comments/b5xpua/the_ultimate_beginners_guide_to_gpu_passthrough/ + +https://www.youtube.com/watch?v=BoMlfk397h0&t=628s diff --git a/playit.md b/playit.md new file mode 100644 index 0000000..1a908cf --- /dev/null +++ b/playit.md @@ -0,0 +1,22 @@ +## Viewing the tunnel host + +To view the tunnel host once it is running as a service, use the following command: + +```bash +screen -r playit.gg +``` + +To exit the tunnel host and return to the terminal session, use Ctrl+A D. This will detach you from the screen session and return you to your previous terminal session. If you use Ctrl+C, it will terminate the tunnel host. If this happens, simply restart the tunnel host using systemctl start playit. + + +## Managing the service + +To manage any service on Linux under systemd, you use the systemctl command. + +To stop the playit service, run sudo systemctl stop playit. +To start the playit service, run sudo systemctl start playit. +To restart the playit service, run sudo systemctl restart playit. +To view the status of the playit service, run systemctl status playit. + +https://unturned.wiki.gg/wiki/Linux_dedicated_server +https://github.com/aBoredDev/playit-setup-script/blob/main/playit-setup.sh diff --git a/scripts/coolify.sh b/scripts/coolify.sh deleted file mode 100644 index 326221b..0000000 --- a/scripts/coolify.sh +++ /dev/null @@ -1 +0,0 @@ -curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash diff --git a/scripts/enable-ssh-in-lxc.sh b/scripts/pertmit-root-login.sh similarity index 100% rename from scripts/enable-ssh-in-lxc.sh rename to scripts/pertmit-root-login.sh diff --git a/uptime-kuma.md b/uptime-kuma.md new file mode 100644 index 0000000..4aa8521 --- /dev/null +++ b/uptime-kuma.md @@ -0,0 +1,7 @@ +# Uptime Kuma + +Docs: https://github.com/louislam/uptime-kuma/wiki + +```bash +bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/uptimekuma.sh)" +```