linuxserver / docker-healthchecks

GNU General Public License v3.0
177 stars 38 forks source link

[BUG] Checks show as late after a minute regardless of grace time. #102

Closed andyg2 closed 1 year ago

andyg2 commented 1 year ago

Is there an existing issue for this?

Current Behavior

212298033-5464bcce-e6bb-4568-9ef2-bb490449ad42

Waited for checks to arrive and noticed that despite a check at 9am and 10am (GMT) the interface stated the cron was late after just a few minutes (This check is late last ping was 26 minuted ago)

212298377-6c6139cb-f8d6-409a-82e1-6faac62a8063

Expected Behavior

The check should not show "late" until at least 1 hour has passed since the last check.

Steps To Reproduce

Created check with:

Environment

- OS: Ubuntu 20.04
- How docker service was installed: `sudo snap install docker` (Docker version 20.10.12, build 20.10.12-0ubuntu2~20.04.1)
- Server clock: UTC

local_settings.py

DEFAULT_FROM_EMAIL = "andy.gee@xxxxxxxxxxxxx.tv"
SITE_NAME = "XXX Service Monitor"
SITE_ROOT = "https://monitor.xxxxxxxxxxxxx.tv"
CSRF_TRUSTED_ORIGINS = ["https://monitor.xxxxxxxxxxxxx.tv", "http://xxx.xxx.xxx.xxx:8000"]
SECRET_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
TELEGRAM_BOT_NAME = "xxxxxxxxxxx"
TELEGRAM_TOKEN = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
DEBUG = False

Nginx

server {
    server_name monitor.xxxxxxxxxxxxx.tv;

    location / {
        proxy_pass http://127.0.0.1:8000;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

    listen [::]:443 ssl ipv6only=on; # managed by Certbot
    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/monitor.xxxxxxxxxxxxx.tv/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/monitor.xxxxxxxxxxxxx.tv/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

}

server {
    if ($host = monitor.xxxxxxxxxxxxx.tv) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

    listen 80;
    listen [::]:80;
    server_name monitor.xxxxxxxxxxxxx.tv;
    return 404; # managed by Certbot
}

CPU architecture

x86-64

Docker creation

version: "2.1"
services:
  healthchecks:
    image: lscr.io/linuxserver/healthchecks:latest
    container_name: healthchecks
    environment:
      - PUID=1000
      - PGID=1000
      - SITE_ROOT=https://monitor.xxxxxxxxxxxxx.tv
      - SITE_NAME=XXX Service Monitor
      - DEFAULT_FROM_EMAIL=andy.gee@xxxxxxxxxxxxx.tv
      - EMAIL_HOST=
      - EMAIL_PORT=
      - EMAIL_HOST_USER=
      - EMAIL_HOST_PASSWORD=
      - EMAIL_USE_TLS=
      - SUPERUSER_EMAIL=andy.gee@xxxxxxxxxxxxx.tv
      - SUPERUSER_PASSWORD=xxxxxxxxxxxxxx
      - DEFAULT_FROM_EMAIL = "andy.gee@xxxxxxxxxxxxx.tv"
    volumes:
      - /root/hcio/config:/config
    ports:
      - 8000:8000
      - 2525:2525 #optional
    restart: unless-stopped

Container logs

[uwsgi-daemons] stopping daemon (pid: 150): /usr/bin/python3 ./manage.py sendalerts
Terminated, finishing...
Terminated, finishing...
Sent 0 alert(s).
[uwsgi-daemons] stopping daemon (pid: 151): /usr/bin/python3 ./manage.py sendreports --loop
Terminated, finishing...
Done.
[uwsgi-daemons] stopping daemon (pid: 152): /usr/bin/python3 ./manage.py smtpd --port 2525
...brutally killing workers...
worker 1 buried after 1 seconds
binary reloading uWSGI...
chdir() to /app/healthchecks
closing all non-uwsgi socket fds > 2 (max_fd = 10000)...
found fd 3 mapped to socket 0 (:8000)
running /usr/sbin/uwsgi
[uWSGI] getting INI configuration from uwsgi.ini
[uwsgi-static] added mapping for /static => static-collected
*** Starting uWSGI 2.0.21 (64bit) on [Tue Jan 17 05:24:32 2023] ***
compiled with version: 12.2.1 20220924 on 09 November 2022 12:47:28
os: Linux-5.4.0-122-generic #138-Ubuntu SMP Wed Jun 22 15:00:31 UTC 2022
nodename: 33840a0be85a
machine: x86_64
clock source: unix
pcre jit disabled
detected number of CPU cores: 1
current working directory: /app/healthchecks
detected binary path: /usr/sbin/uwsgi
your processes number limit is 3772
your memory page size is 4096 bytes
detected max file descriptor number: 10000
building mime-types dictionary from file /etc/mime.types...1323 entry found
lock engine: pthread robust mutexes
thunder lock: enabled
uwsgi socket 0 inherited INET address :8000 fd 3
Python version: 3.10.9 (main, Dec 12 2022, 17:52:15) [GCC 12.2.1 20220924]
Python main interpreter initialized at 0x7f87db8a2b40
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 203184 bytes (198 KB) for 1 cores
*** Operational MODE: single process ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x7f87db8a2b40 pid: 128 (default app)
*** uWSGI is running in multiple interpreter mode ***
gracefully (RE)spawned uWSGI master process (pid: 128)
spawned uWSGI worker 1 (pid: 168, cores: 1)
[uwsgi-daemons] spawning "/usr/bin/python3 ./manage.py sendalerts" (uid: 1000 gid: 1000)
[uwsgi-daemons] spawning "/usr/bin/python3 ./manage.py smtpd --port 2525" (uid: 1000 gid: 1000)
[uwsgi-daemons] spawning "/usr/bin/python3 ./manage.py sendreports --loop" (uid: 1000 gid: 1000)
sendalerts is now running
sendreports is now running
Starting SMTP listener on 0.0.0.0:2525 ...
[migrations] started
[migrations] no migrations found
usermod: no changes

-------------------------------------
          _         ()
         | |  ___   _    __
         | | / __| | |  /  \
         | | \__ \ | | | () |
         |_| |___/ |_|  \__/

Brought to you by linuxserver.io
-------------------------------------

To support LSIO projects visit:
https://www.linuxserver.io/donate/
-------------------------------------
GID/UID
-------------------------------------

User uid:    1000
User gid:    1000
-------------------------------------

No changes detected
Operations to perform:
  Apply all migrations: accounts, admin, api, auth, contenttypes, payments, sessions
Running migrations:
  No migrations to apply.
Superuser creation skipped. Already exists.
[custom-init] No custom files found, skipping...
[uWSGI] getting INI configuration from uwsgi.ini
[uwsgi-static] added mapping for /static => static-collected
*** Starting uWSGI 2.0.21 (64bit) on [Tue Jan 17 05:24:44 2023] ***
compiled with version: 12.2.1 20220924 on 09 November 2022 12:47:28
os: Linux-5.4.0-122-generic #138-Ubuntu SMP Wed Jun 22 15:00:31 UTC 2022
nodename: 33840a0be85a
machine: x86_64
clock source: unix
pcre jit disabled
detected number of CPU cores: 1
current working directory: /app/healthchecks
detected binary path: /usr/sbin/uwsgi
your processes number limit is 3772
your memory page size is 4096 bytes
detected max file descriptor number: 10000
building mime-types dictionary from file /etc/mime.types...1323 entry found
lock engine: pthread robust mutexes
thunder lock: enabled
uwsgi socket 0 bound to TCP address :8000 fd 3
Python version: 3.10.9 (main, Dec 12 2022, 17:52:15) [GCC 12.2.1 20220924]
Python main interpreter initialized at 0x7fed5c680b40
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 203184 bytes (198 KB) for 1 cores
*** Operational MODE: single process ***
[ls.io-init] done.
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x7fed5c680b40 pid: 128 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 128)
spawned uWSGI worker 1 (pid: 149, cores: 1)
[uwsgi-daemons] spawning "/usr/bin/python3 ./manage.py sendalerts" (uid: 1000 gid: 1000)
[uwsgi-daemons] spawning "/usr/bin/python3 ./manage.py sendreports --loop" (uid: 1000 gid: 1000)
[uwsgi-daemons] spawning "/usr/bin/python3 ./manage.py smtpd --port 2525" (uid: 1000 gid: 1000)
sendalerts is now running
sendreports is now running
Starting SMTP listener on 0.0.0.0:2525 ...
[pid: 149|app: 0|req: 1/1] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:25:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 212 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 2/2] xxx.xxx.xxx.xxx () {50 vars in 980 bytes} [Tue Jan 17 05:26:08 2023] GET /admin/api/channel/ => generated 0 bytes in 67 msecs (HTTP/1.0 302) 11 headers in 423 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 3/3] xxx.xxx.xxx.xxx () {50 vars in 1017 bytes} [Tue Jan 17 05:26:08 2023] GET /admin/login/?next=/admin/api/channel/ => generated 8053 bytes in 20 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 4/4] xxx.xxx.xxx.xxx () {56 vars in 1154 bytes} [Tue Jan 17 05:26:10 2023] POST /admin/login/?next=/admin/api/channel/ => generated 0 bytes in 405 msecs (HTTP/1.0 302) 11 headers in 555 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 5/5] xxx.xxx.xxx.xxx () {50 vars in 963 bytes} [Tue Jan 17 05:26:11 2023] GET / => generated 8575 bytes in 30 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 6/6] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:26:14 2023] GET /?refresh=1 => generated 78 bytes in 14 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 7/7] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:26:17 2023] GET /?refresh=1 => generated 78 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 8/8] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:26:19 2023] GET /?refresh=1 => generated 78 bytes in 14 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 9/9] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:26:22 2023] GET /?refresh=1 => generated 78 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 10/10] xxx.xxx.xxx.xxx () {50 vars in 938 bytes} [Tue Jan 17 05:26:22 2023] GET /admin/ => generated 11121 bytes in 33 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 11/11] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:26:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 14 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 12/12] xxx.xxx.xxx.xxx () {50 vars in 968 bytes} [Tue Jan 17 05:26:24 2023] GET /admin/api/channel/ => generated 13947 bytes in 38 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 13/13] xxx.xxx.xxx.xxx () {46 vars in 825 bytes} [Tue Jan 17 05:26:24 2023] GET /admin/jsi18n/ => generated 3343 bytes in 7 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 14/14] xxx.xxx.xxx.xxx () {46 vars in 842 bytes} [Tue Jan 17 05:26:24 2023] GET /favicon.ico => generated 179 bytes in 6 msecs (HTTP/1.0 404) 8 headers in 267 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 15/15] xxx.xxx.xxx.xxx () {50 vars in 938 bytes} [Tue Jan 17 05:26:26 2023] GET /admin/ => generated 11121 bytes in 18 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 16/16] xxx.xxx.xxx.xxx () {50 vars in 968 bytes} [Tue Jan 17 05:26:31 2023] GET /admin/api/channel/ => generated 13947 bytes in 23 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 17/17] xxx.xxx.xxx.xxx () {46 vars in 825 bytes} [Tue Jan 17 05:26:31 2023] GET /admin/jsi18n/ => generated 3343 bytes in 6 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 18/18] xxx.xxx.xxx.xxx () {50 vars in 988 bytes} [Tue Jan 17 05:26:33 2023] GET /admin/api/channel/add/ => generated 15847 bytes in 45 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 19/19] xxx.xxx.xxx.xxx () {46 vars in 829 bytes} [Tue Jan 17 05:26:33 2023] GET /admin/jsi18n/ => generated 3343 bytes in 61 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 20/20] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:27:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 24 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 21/21] 164.90.206.99 () {26 vars in 389 bytes} [Tue Jan 17 05:27:50 2023] GET / => generated 0 bytes in 1 msecs (HTTP/1.1 302) 9 headers in 289 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 22/22] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:28:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 14 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 23/23] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:29:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 14 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 24/24] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:30:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 16 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 25/25] xxx.xxx.xxx.xxx () {56 vars in 1110 bytes} [Tue Jan 17 05:30:52 2023] POST /admin/api/channel/add/ => generated 16233 bytes in 44 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 26/26] xxx.xxx.xxx.xxx () {46 vars in 829 bytes} [Tue Jan 17 05:30:53 2023] GET /admin/jsi18n/ => generated 3343 bytes in 7 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 27/27] xxx.xxx.xxx.xxx () {46 vars in 846 bytes} [Tue Jan 17 05:30:53 2023] GET /favicon.ico => generated 179 bytes in 6 msecs (HTTP/1.0 404) 8 headers in 267 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 28/28] xxx.xxx.xxx.xxx () {48 vars in 972 bytes} [Tue Jan 17 05:30:57 2023] GET /admin/api/check/?_popup=1 => generated 79889 bytes in 186 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 29/29] xxx.xxx.xxx.xxx () {56 vars in 1110 bytes} [Tue Jan 17 05:31:01 2023] POST /admin/api/channel/add/ => generated 0 bytes in 21 msecs (HTTP/1.0 302) 12 headers in 720 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 30/30] xxx.xxx.xxx.xxx () {50 vars in 1264 bytes} [Tue Jan 17 05:31:02 2023] GET /admin/api/channel/6/change/ => generated 16545 bytes in 37 msecs (HTTP/1.0 200) 12 headers in 608 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 31/31] xxx.xxx.xxx.xxx () {46 vars in 834 bytes} [Tue Jan 17 05:31:02 2023] GET /admin/jsi18n/ => generated 3343 bytes in 7 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 32/32] xxx.xxx.xxx.xxx () {46 vars in 851 bytes} [Tue Jan 17 05:31:02 2023] GET /favicon.ico => generated 179 bytes in 8 msecs (HTTP/1.0 404) 8 headers in 267 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 33/33] xxx.xxx.xxx.xxx () {50 vars in 953 bytes} [Tue Jan 17 05:31:06 2023] GET / => generated 8574 bytes in 28 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/34] xxx.xxx.xxx.xxx () {46 vars in 840 bytes} [Tue Jan 17 05:31:06 2023] GET /static/img/logo.png => generated 1159 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 112 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 34/35] xxx.xxx.xxx.xxx () {50 vars in 1032 bytes} [Tue Jan 17 05:31:07 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/ => generated 351058 bytes in 152 msecs (HTTP/1.0 200) 10 headers in 544 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 35/36] xxx.xxx.xxx.xxx () {50 vars in 1097 bytes} [Tue Jan 17 05:31:09 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/integrations/ => generated 18501 bytes in 39 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/37] xxx.xxx.xxx.xxx () {46 vars in 933 bytes} [Tue Jan 17 05:31:09 2023] GET /static/img/integrations/telegram.png => generated 2756 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 112 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 36/38] xxx.xxx.xxx.xxx () {48 vars in 989 bytes} [Tue Jan 17 05:31:14 2023] GET /integrations/b9bbcd32-aa53-4a39-aa4d-0c260495e6da/checks/ => generated 65305 bytes in 25 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 37/39] xxx.xxx.xxx.xxx () {56 vars in 1222 bytes} [Tue Jan 17 05:31:20 2023] POST /projects/b59281a7-a076-4010-b832-0e3c2c634e19/integrations/ => generated 0 bytes in 129 msecs (HTTP/1.0 302) 9 headers in 333 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 38/40] xxx.xxx.xxx.xxx () {50 vars in 1103 bytes} [Tue Jan 17 05:31:20 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/integrations/ => generated 18504 bytes in 21 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 39/41] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:31:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 12 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 40/42] xxx.xxx.xxx.xxx () {56 vars in 1212 bytes} [Tue Jan 17 05:31:24 2023] POST /integrations/b9bbcd32-aa53-4a39-aa4d-0c260495e6da/test/ => generated 0 bytes in 529 msecs (HTTP/1.0 302) 10 headers in 512 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 41/43] xxx.xxx.xxx.xxx () {50 vars in 1237 bytes} [Tue Jan 17 05:31:24 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/integrations/ => generated 18668 bytes in 25 msecs (HTTP/1.0 200) 10 headers in 496 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 42/44] xxx.xxx.xxx.xxx () {38 vars in 790 bytes} [Tue Jan 17 05:31:26 2023] GET /cloaked/b06679d4ce4c70d253c47f8191bb6fb0e4acc332/ => generated 0 bytes in 1 msecs (HTTP/1.0 302) 9 headers in 345 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 43/45] xxx.xxx.xxx.xxx () {38 vars in 833 bytes} [Tue Jan 17 05:31:26 2023] GET /accounts/login/?next=/cloaked/b06679d4ce4c70d253c47f8191bb6fb0e4acc332/ => generated 8053 bytes in 5 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 44/46] xxx.xxx.xxx.xxx () {38 vars in 766 bytes} [Tue Jan 17 05:31:26 2023] GET /accounts/login/ => generated 8053 bytes in 6 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 45/47] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:32:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 14 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 46/48] xxx.xxx.xxx.xxx () {50 vars in 997 bytes} [Tue Jan 17 05:32:57 2023] GET /admin/ => generated 11124 bytes in 21 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 47/49] xxx.xxx.xxx.xxx () {50 vars in 968 bytes} [Tue Jan 17 05:32:59 2023] GET /admin/api/channel/ => generated 14697 bytes in 26 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 48/50] xxx.xxx.xxx.xxx () {46 vars in 825 bytes} [Tue Jan 17 05:32:59 2023] GET /admin/jsi18n/ => generated 3343 bytes in 6 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/51] xxx.xxx.xxx.xxx () {46 vars in 891 bytes} [Tue Jan 17 05:32:59 2023] GET /static/admin/img/tooltag-add.svg => generated 331 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 115 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 49/52] xxx.xxx.xxx.xxx () {50 vars in 998 bytes} [Tue Jan 17 05:33:08 2023] GET /admin/api/channel/6/change/ => generated 16817 bytes in 40 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 50/53] xxx.xxx.xxx.xxx () {46 vars in 834 bytes} [Tue Jan 17 05:33:08 2023] GET /admin/jsi18n/ => generated 3343 bytes in 7 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 51/54] xxx.xxx.xxx.xxx () {46 vars in 851 bytes} [Tue Jan 17 05:33:08 2023] GET /favicon.ico => generated 179 bytes in 6 msecs (HTTP/1.0 404) 8 headers in 267 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 52/55] xxx.xxx.xxx.xxx () {50 vars in 989 bytes} [Tue Jan 17 05:33:17 2023] GET /admin/api/channel/ => generated 14697 bytes in 26 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 53/56] xxx.xxx.xxx.xxx () {46 vars in 825 bytes} [Tue Jan 17 05:33:18 2023] GET /admin/jsi18n/ => generated 3343 bytes in 6 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 54/57] xxx.xxx.xxx.xxx () {50 vars in 988 bytes} [Tue Jan 17 05:33:21 2023] GET /admin/api/channel/add/ => generated 15847 bytes in 29 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 55/58] xxx.xxx.xxx.xxx () {46 vars in 829 bytes} [Tue Jan 17 05:33:21 2023] GET /admin/jsi18n/ => generated 3343 bytes in 7 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 56/59] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:33:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 14 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 57/60] xxx.xxx.xxx.xxx () {48 vars in 1012 bytes} [Tue Jan 17 05:33:36 2023] GET /admin/accounts/project/?_to_field=id&_popup=1 => generated 5521 bytes in 32 msecs (HTTP/1.0 200) 11 headers in 509 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 58/61] xxx.xxx.xxx.xxx () {56 vars in 1110 bytes} [Tue Jan 17 05:33:44 2023] POST /admin/api/channel/add/ => generated 16237 bytes in 37 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 59/62] xxx.xxx.xxx.xxx () {46 vars in 829 bytes} [Tue Jan 17 05:33:45 2023] GET /admin/jsi18n/ => generated 3343 bytes in 9 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 60/63] xxx.xxx.xxx.xxx () {46 vars in 846 bytes} [Tue Jan 17 05:33:45 2023] GET /favicon.ico => generated 179 bytes in 7 msecs (HTTP/1.0 404) 8 headers in 267 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 61/64] xxx.xxx.xxx.xxx () {48 vars in 972 bytes} [Tue Jan 17 05:33:48 2023] GET /admin/api/check/?_popup=1 => generated 79889 bytes in 177 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/65] xxx.xxx.xxx.xxx () {46 vars in 874 bytes} [Tue Jan 17 05:33:49 2023] GET /static/css/admin/checks.css => generated 224 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 110 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 62/66] xxx.xxx.xxx.xxx () {56 vars in 1110 bytes} [Tue Jan 17 05:33:53 2023] POST /admin/api/channel/add/ => generated 0 bytes in 21 msecs (HTTP/1.0 302) 12 headers in 721 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 63/67] xxx.xxx.xxx.xxx () {50 vars in 1265 bytes} [Tue Jan 17 05:33:53 2023] GET /admin/api/channel/7/change/ => generated 16549 bytes in 34 msecs (HTTP/1.0 200) 12 headers in 608 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 64/68] xxx.xxx.xxx.xxx () {46 vars in 834 bytes} [Tue Jan 17 05:33:53 2023] GET /admin/jsi18n/ => generated 3343 bytes in 6 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 65/69] xxx.xxx.xxx.xxx () {50 vars in 953 bytes} [Tue Jan 17 05:34:00 2023] GET / => generated 8581 bytes in 34 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/70] xxx.xxx.xxx.xxx () {46 vars in 875 bytes} [Tue Jan 17 05:34:00 2023] GET /static/CACHE/css/output.805e95f3f85c.css => generated 146419 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 113 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 66/71] xxx.xxx.xxx.xxx () {50 vars in 1032 bytes} [Tue Jan 17 05:34:01 2023] GET /projects/787a0e6b-ea2f-433d-be93-72926c55fa88/checks/ => generated 33000 bytes in 27 msecs (HTTP/1.0 200) 10 headers in 543 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 67/72] xxx.xxx.xxx.xxx () {50 vars in 1097 bytes} [Tue Jan 17 05:34:03 2023] GET /projects/787a0e6b-ea2f-433d-be93-72926c55fa88/integrations/ => generated 18505 bytes in 20 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/73] xxx.xxx.xxx.xxx () {46 vars in 933 bytes} [Tue Jan 17 05:34:03 2023] GET /static/img/integrations/telegram.png => generated 2756 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 112 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 68/74] xxx.xxx.xxx.xxx () {48 vars in 989 bytes} [Tue Jan 17 05:34:08 2023] GET /integrations/c23a56c7-084d-4aff-9216-38739cfb6017/checks/ => generated 919 bytes in 9 msecs (HTTP/1.0 200) 9 headers in 396 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 69/75] xxx.xxx.xxx.xxx () {56 vars in 1221 bytes} [Tue Jan 17 05:34:11 2023] POST /projects/787a0e6b-ea2f-433d-be93-72926c55fa88/integrations/ => generated 0 bytes in 14 msecs (HTTP/1.0 302) 9 headers in 333 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 70/76] xxx.xxx.xxx.xxx () {50 vars in 1103 bytes} [Tue Jan 17 05:34:11 2023] GET /projects/787a0e6b-ea2f-433d-be93-72926c55fa88/integrations/ => generated 18506 bytes in 20 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 71/77] xxx.xxx.xxx.xxx () {56 vars in 1212 bytes} [Tue Jan 17 05:34:14 2023] POST /integrations/c23a56c7-084d-4aff-9216-38739cfb6017/test/ => generated 0 bytes in 547 msecs (HTTP/1.0 302) 10 headers in 512 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 72/78] xxx.xxx.xxx.xxx () {38 vars in 790 bytes} [Tue Jan 17 05:34:14 2023] GET /cloaked/10610e8e1e8192a2f1870b6527dab26cf0e07d8f/ => generated 0 bytes in 1 msecs (HTTP/1.0 302) 9 headers in 345 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 73/79] xxx.xxx.xxx.xxx () {38 vars in 833 bytes} [Tue Jan 17 05:34:14 2023] GET /accounts/login/?next=/cloaked/10610e8e1e8192a2f1870b6527dab26cf0e07d8f/ => generated 8053 bytes in 5 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 74/80] xxx.xxx.xxx.xxx () {38 vars in 766 bytes} [Tue Jan 17 05:34:14 2023] GET /accounts/login/ => generated 8053 bytes in 5 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 75/81] xxx.xxx.xxx.xxx () {50 vars in 1237 bytes} [Tue Jan 17 05:34:14 2023] GET /projects/787a0e6b-ea2f-433d-be93-72926c55fa88/integrations/ => generated 18670 bytes in 27 msecs (HTTP/1.0 200) 10 headers in 496 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 76/82] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:34:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 13 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 77/83] xxx.xxx.xxx.xxx () {50 vars in 985 bytes} [Tue Jan 17 05:34:26 2023] GET / => generated 8581 bytes in 26 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/84] xxx.xxx.xxx.xxx () {46 vars in 840 bytes} [Tue Jan 17 05:34:27 2023] GET /static/img/logo.png => generated 1159 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 112 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 78/85] xxx.xxx.xxx.xxx () {50 vars in 1032 bytes} [Tue Jan 17 05:34:28 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/ => generated 350488 bytes in 153 msecs (HTTP/1.0 200) 10 headers in 544 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 79/86] xxx.xxx.xxx.xxx () {50 vars in 1085 bytes} [Tue Jan 17 05:34:28 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/ => generated 350488 bytes in 135 msecs (HTTP/1.0 200) 9 headers in 399 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 80/87] xxx.xxx.xxx.xxx () {50 vars in 979 bytes} [Tue Jan 17 05:34:31 2023] GET / => generated 8581 bytes in 25 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 81/88] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:34:34 2023] GET /?refresh=1 => generated 78 bytes in 14 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 82/89] xxx.xxx.xxx.xxx () {50 vars in 938 bytes} [Tue Jan 17 05:34:35 2023] GET /admin/ => generated 11111 bytes in 19 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/90] xxx.xxx.xxx.xxx () {46 vars in 957 bytes} [Tue Jan 17 05:34:35 2023] GET /static/admin/fonts/Roboto-Regular-webfont.woff => generated 85876 bytes in 1 msecs via sendfile() (HTTP/1.0 200) 3 headers in 113 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 83/91] xxx.xxx.xxx.xxx () {50 vars in 978 bytes} [Tue Jan 17 05:34:49 2023] GET /admin/accounts/profile/ => generated 16622 bytes in 41 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 84/92] xxx.xxx.xxx.xxx () {46 vars in 830 bytes} [Tue Jan 17 05:34:49 2023] GET /admin/jsi18n/ => generated 3343 bytes in 7 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 85/93] xxx.xxx.xxx.xxx () {50 vars in 995 bytes} [Tue Jan 17 05:34:50 2023] GET /admin/accounts/project/ => generated 12084 bytes in 27 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 86/94] xxx.xxx.xxx.xxx () {46 vars in 830 bytes} [Tue Jan 17 05:34:51 2023] GET /admin/jsi18n/ => generated 3343 bytes in 7 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 87/95] xxx.xxx.xxx.xxx () {46 vars in 847 bytes} [Tue Jan 17 05:34:51 2023] GET /favicon.ico => generated 179 bytes in 7 msecs (HTTP/1.0 404) 8 headers in 267 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 88/96] xxx.xxx.xxx.xxx () {50 vars in 1055 bytes} [Tue Jan 17 05:34:56 2023] GET /projects/09973b83-3e2b-40e3-b12d-02ba9937bfdf/checks/ => generated 36705 bytes in 33 msecs (HTTP/1.0 200) 10 headers in 543 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/97] xxx.xxx.xxx.xxx () {46 vars in 915 bytes} [Tue Jan 17 05:34:56 2023] GET /static/img/apple-touch-180.png => generated 733 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 111 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 89/98] xxx.xxx.xxx.xxx () {48 vars in 1032 bytes} [Tue Jan 17 05:35:00 2023] GET /projects/09973b83-3e2b-40e3-b12d-02ba9937bfdf/checks/status/ => generated 164 bytes in 8 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 90/99] xxx.xxx.xxx.xxx () {48 vars in 1032 bytes} [Tue Jan 17 05:35:02 2023] GET /projects/09973b83-3e2b-40e3-b12d-02ba9937bfdf/checks/status/ => generated 164 bytes in 8 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 91/100] xxx.xxx.xxx.xxx () {50 vars in 1083 bytes} [Tue Jan 17 05:35:04 2023] GET /checks/306dfdd0-9140-4d58-be55-a6c19ac83a9e/details/ => generated 60486 bytes in 53 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 92/101] xxx.xxx.xxx.xxx () {48 vars in 1013 bytes} [Tue Jan 17 05:35:05 2023] GET /checks/306dfdd0-9140-4d58-be55-a6c19ac83a9e/status/ => generated 904 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 93/102] xxx.xxx.xxx.xxx () {48 vars in 1020 bytes} [Tue Jan 17 05:35:07 2023] GET /checks/306dfdd0-9140-4d58-be55-a6c19ac83a9e/status/?u=1 => generated 187 bytes in 10 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 94/103] xxx.xxx.xxx.xxx () {48 vars in 1020 bytes} [Tue Jan 17 05:35:10 2023] GET /checks/306dfdd0-9140-4d58-be55-a6c19ac83a9e/status/?u=1 => generated 187 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 95/104] xxx.xxx.xxx.xxx () {50 vars in 1084 bytes} [Tue Jan 17 05:35:12 2023] GET /projects/09973b83-3e2b-40e3-b12d-02ba9937bfdf/checks/ => generated 36705 bytes in 25 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 96/105] xxx.xxx.xxx.xxx () {50 vars in 979 bytes} [Tue Jan 17 05:35:14 2023] GET / => generated 8573 bytes in 25 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/106] xxx.xxx.xxx.xxx () {46 vars in 840 bytes} [Tue Jan 17 05:35:14 2023] GET /static/img/logo.png => generated 1159 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 112 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 97/107] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:35:17 2023] GET /?refresh=1 => generated 78 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 98/108] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:35:20 2023] GET /?refresh=1 => generated 78 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 99/109] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:35:23 2023] GET /?refresh=1 => generated 78 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 100/110] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:35:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 14 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 101/111] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:35:26 2023] GET /?refresh=1 => generated 78 bytes in 19 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 102/112] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:35:29 2023] GET /?refresh=1 => generated 78 bytes in 14 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 103/113] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:35:32 2023] GET /?refresh=1 => generated 78 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 104/114] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:35:35 2023] GET /?refresh=1 => generated 78 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 105/115] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:35:38 2023] GET /?refresh=1 => generated 78 bytes in 19 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 106/116] xxx.xxx.xxx.xxx () {50 vars in 960 bytes} [Tue Jan 17 05:35:41 2023] GET /accounts/profile/ => generated 14241 bytes in 32 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 107/117] xxx.xxx.xxx.xxx () {50 vars in 993 bytes} [Tue Jan 17 05:35:52 2023] GET /accounts/two_factor/totp/ => generated 6298 bytes in 28 msecs (HTTP/1.0 200) 10 headers in 542 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 108/118] xxx.xxx.xxx.xxx () {56 vars in 1118 bytes} [Tue Jan 17 05:36:12 2023] POST /accounts/two_factor/totp/ => generated 6472 bytes in 16 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 109/119] xxx.xxx.xxx.xxx () {50 vars in 985 bytes} [Tue Jan 17 05:36:18 2023] GET /accounts/profile/ => generated 14241 bytes in 17 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 110/120] xxx.xxx.xxx.xxx () {50 vars in 993 bytes} [Tue Jan 17 05:36:21 2023] GET /accounts/two_factor/totp/ => generated 6298 bytes in 16 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 111/121] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:36:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 19 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/122] xxx.xxx.xxx.xxx () {42 vars in 689 bytes} [Tue Jan 17 05:36:34 2023] GET /static/img/logo.png => generated 1159 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 112 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 112/123] xxx.xxx.xxx.xxx () {56 vars in 1119 bytes} [Tue Jan 17 05:36:43 2023] POST /accounts/two_factor/totp/ => generated 0 bytes in 17 msecs (HTTP/1.0 302) 10 headers in 444 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 113/124] xxx.xxx.xxx.xxx () {50 vars in 1001 bytes} [Tue Jan 17 05:36:43 2023] GET /accounts/two_factor/totp/ => generated 7536 bytes in 50 msecs (HTTP/1.0 200) 10 headers in 542 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 114/125] xxx.xxx.xxx.xxx () {56 vars in 1118 bytes} [Tue Jan 17 05:37:15 2023] POST /accounts/two_factor/totp/ => generated 0 bytes in 15 msecs (HTTP/1.0 302) 10 headers in 436 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 115/126] xxx.xxx.xxx.xxx () {50 vars in 985 bytes} [Tue Jan 17 05:37:15 2023] GET /accounts/profile/ => generated 14185 bytes in 28 msecs (HTTP/1.0 200) 10 headers in 543 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 116/127] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:37:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 15 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 117/128] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:38:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 12 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 118/129] xxx.xxx.xxx.xxx () {56 vars in 1092 bytes} [Tue Jan 17 05:39:14 2023] POST /accounts/logout/ => generated 0 bytes in 9 msecs (HTTP/1.0 302) 10 headers in 373 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 119/130] xxx.xxx.xxx.xxx () {50 vars in 899 bytes} [Tue Jan 17 05:39:14 2023] GET / => generated 0 bytes in 1 msecs (HTTP/1.0 302) 9 headers in 289 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 120/131] xxx.xxx.xxx.xxx () {50 vars in 929 bytes} [Tue Jan 17 05:39:14 2023] GET /accounts/login/ => generated 8053 bytes in 6 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 121/132] xxx.xxx.xxx.xxx () {56 vars in 1045 bytes} [Tue Jan 17 05:39:17 2023] POST /accounts/login/ => generated 0 bytes in 377 msecs (HTTP/1.0 302) 10 headers in 450 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 122/133] xxx.xxx.xxx.xxx () {50 vars in 1003 bytes} [Tue Jan 17 05:39:17 2023] GET /accounts/login/two_factor/totp/ => generated 3848 bytes in 10 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 123/134] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:39:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 12 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 124/135] xxx.xxx.xxx.xxx () {56 vars in 1136 bytes} [Tue Jan 17 05:39:27 2023] POST /accounts/login/two_factor/totp/ => generated 0 bytes in 34 msecs (HTTP/1.0 302) 11 headers in 555 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 125/136] xxx.xxx.xxx.xxx () {50 vars in 957 bytes} [Tue Jan 17 05:39:27 2023] GET / => generated 8573 bytes in 24 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 126/137] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:39:30 2023] GET /?refresh=1 => generated 78 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 127/138] xxx.xxx.xxx.xxx () {48 vars in 878 bytes} [Tue Jan 17 05:39:33 2023] GET /?refresh=1 => generated 78 bytes in 14 msecs (HTTP/1.0 200) 8 headers in 251 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 128/139] xxx.xxx.xxx.xxx () {50 vars in 1032 bytes} [Tue Jan 17 05:39:34 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/ => generated 350489 bytes in 138 msecs (HTTP/1.0 200) 10 headers in 544 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 129/140] xxx.xxx.xxx.xxx () {48 vars in 1032 bytes} [Tue Jan 17 05:39:38 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16005 bytes in 30 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 130/141] xxx.xxx.xxx.xxx () {48 vars in 1032 bytes} [Tue Jan 17 05:39:41 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16005 bytes in 30 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 131/142] xxx.xxx.xxx.xxx () {48 vars in 1032 bytes} [Tue Jan 17 05:39:44 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16005 bytes in 87 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 132/143] xxx.xxx.xxx.xxx () {48 vars in 1032 bytes} [Tue Jan 17 05:39:47 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16005 bytes in 27 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 133/144] xxx.xxx.xxx.xxx () {48 vars in 1032 bytes} [Tue Jan 17 05:39:50 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16005 bytes in 29 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 134/145] xxx.xxx.xxx.xxx () {48 vars in 1032 bytes} [Tue Jan 17 05:39:53 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16005 bytes in 40 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 135/146] xxx.xxx.xxx.xxx () {48 vars in 1032 bytes} [Tue Jan 17 05:39:56 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16005 bytes in 29 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 136/147] xxx.xxx.xxx.xxx () {48 vars in 1041 bytes} [Tue Jan 17 05:39:59 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16005 bytes in 29 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 137/148] xxx.xxx.xxx.xxx () {48 vars in 1041 bytes} [Tue Jan 17 05:40:02 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16014 bytes in 61 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 138/149] xxx.xxx.xxx.xxx () {48 vars in 986 bytes} [Tue Jan 17 05:40:05 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/last_ping/ => generated 737 bytes in 18 msecs (HTTP/1.0 200) 8 headers in 260 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 139/150] xxx.xxx.xxx.xxx () {48 vars in 1041 bytes} [Tue Jan 17 05:40:05 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16014 bytes in 27 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 140/151] xxx.xxx.xxx.xxx () {48 vars in 1041 bytes} [Tue Jan 17 05:40:08 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16014 bytes in 52 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 141/152] xxx.xxx.xxx.xxx () {48 vars in 1041 bytes} [Tue Jan 17 05:40:11 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/status/ => generated 16014 bytes in 28 msecs (HTTP/1.0 200) 8 headers in 254 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 142/153] xxx.xxx.xxx.xxx () {56 vars in 1204 bytes} [Tue Jan 17 05:40:13 2023] POST /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/name/ => generated 0 bytes in 14 msecs (HTTP/1.0 302) 9 headers in 336 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 143/154] xxx.xxx.xxx.xxx () {50 vars in 1111 bytes} [Tue Jan 17 05:40:13 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/checks/?tag=NEXT => generated 353445 bytes in 138 msecs (HTTP/1.0 200) 9 headers in 399 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/155] xxx.xxx.xxx.xxx () {46 vars in 924 bytes} [Tue Jan 17 05:40:14 2023] GET /static/img/apple-touch-180.png => generated 733 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 111 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 144/156] xxx.xxx.xxx.xxx () {50 vars in 1092 bytes} [Tue Jan 17 05:40:15 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/details/ => generated 60989 bytes in 29 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/157] xxx.xxx.xxx.xxx () {46 vars in 914 bytes} [Tue Jan 17 05:40:15 2023] GET /static/img/apple-touch-180.png => generated 733 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 111 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 145/158] xxx.xxx.xxx.xxx () {48 vars in 1013 bytes} [Tue Jan 17 05:40:16 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/ => generated 5370 bytes in 25 msecs (HTTP/1.0 200) 8 headers in 253 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 146/159] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:18 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673933963.958632 => generated 223 bytes in 12 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 147/160] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:21 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673933963.958632 => generated 223 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 148/161] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:40:22 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 16 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 149/162] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:24 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673933963.958632 => generated 5358 bytes in 24 msecs (HTTP/1.0 200) 8 headers in 253 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 150/163] xxx.xxx.xxx.xxx () {48 vars in 974 bytes} [Tue Jan 17 05:40:25 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/transfer/ => generated 2456 bytes in 13 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 151/164] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:27 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 217 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 152/165] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:30 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 217 bytes in 14 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 153/166] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:33 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 218 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 154/167] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:36 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 218 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 155/168] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:39 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 218 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 156/169] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:42 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 218 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 157/170] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:45 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 218 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 158/171] xxx.xxx.xxx.xxx () {48 vars in 1052 bytes} [Tue Jan 17 05:40:48 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 218 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 159/172] xxx.xxx.xxx.xxx () {50 vars in 1101 bytes} [Tue Jan 17 05:40:51 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/details/?urls=slug => generated 61699 bytes in 63 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/173] xxx.xxx.xxx.xxx () {46 vars in 924 bytes} [Tue Jan 17 05:40:52 2023] GET /static/img/apple-touch-180.png => generated 733 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 111 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 160/174] xxx.xxx.xxx.xxx () {48 vars in 1023 bytes} [Tue Jan 17 05:40:52 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/ => generated 5365 bytes in 22 msecs (HTTP/1.0 200) 8 headers in 253 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 161/175] xxx.xxx.xxx.xxx () {50 vars in 1111 bytes} [Tue Jan 17 05:40:54 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/details/?urls=uuid => generated 60984 bytes in 35 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 162/176] xxx.xxx.xxx.xxx () {48 vars in 1023 bytes} [Tue Jan 17 05:40:55 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/ => generated 5365 bytes in 26 msecs (HTTP/1.0 200) 8 headers in 253 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 163/177] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:40:58 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 218 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 164/178] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:01 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 223 bytes in 14 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 165/179] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:04 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 223 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 166/180] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:07 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 223 bytes in 12 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 167/181] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:10 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 223 bytes in 14 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 168/182] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:13 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 223 bytes in 15 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 169/183] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:16 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 223 bytes in 12 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 170/184] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:19 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 223 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 171/185] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:22 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 223 bytes in 17 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 172/186] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:41:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 13 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 173/187] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:25 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934022.939958 => generated 5364 bytes in 22 msecs (HTTP/1.0 200) 8 headers in 253 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 174/188] xxx.xxx.xxx.xxx () {48 vars in 1062 bytes} [Tue Jan 17 05:41:28 2023] GET /checks/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5/status/?u=1673934083.010471 => generated 217 bytes in 13 msecs (HTTP/1.0 200) 8 headers in 252 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 175/189] xxx.xxx.xxx.xxx () {50 vars in 1106 bytes} [Tue Jan 17 05:41:28 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/integrations/ => generated 18571 bytes in 23 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/190] xxx.xxx.xxx.xxx () {46 vars in 933 bytes} [Tue Jan 17 05:41:28 2023] GET /static/img/integrations/telegram.png => generated 2756 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 112 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 176/191] xxx.xxx.xxx.xxx () {50 vars in 1097 bytes} [Tue Jan 17 05:41:33 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/add_email/ => generated 8536 bytes in 24 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 177/192] xxx.xxx.xxx.xxx () {56 vars in 1212 bytes} [Tue Jan 17 05:41:46 2023] POST /projects/b59281a7-a076-4010-b832-0e3c2c634e19/add_email/ => generated 0 bytes in 32 msecs (HTTP/1.0 302) 9 headers in 333 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 178/193] xxx.xxx.xxx.xxx () {50 vars in 1100 bytes} [Tue Jan 17 05:41:47 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/integrations/ => generated 22955 bytes in 25 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 179/194] xxx.xxx.xxx.xxx () {56 vars in 1212 bytes} [Tue Jan 17 05:41:52 2023] POST /integrations/579a284c-f1ef-48f7-8f87-d97cdf67d9ed/test/ => generated 0 bytes in 21 msecs (HTTP/1.0 302) 10 headers in 555 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 180/195] xxx.xxx.xxx.xxx () {50 vars in 1280 bytes} [Tue Jan 17 05:41:52 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/integrations/ => generated 23343 bytes in 22 msecs (HTTP/1.0 200) 10 headers in 496 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 181/196] xxx.xxx.xxx.xxx () {50 vars in 1095 bytes} [Tue Jan 17 05:42:00 2023] GET /integrations/579a284c-f1ef-48f7-8f87-d97cdf67d9ed/edit/ => generated 8592 bytes in 17 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 182/197] xxx.xxx.xxx.xxx () {50 vars in 993 bytes} [Tue Jan 17 05:42:05 2023] GET /admin/ => generated 11111 bytes in 20 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 183/198] xxx.xxx.xxx.xxx () {50 vars in 968 bytes} [Tue Jan 17 05:42:06 2023] GET /admin/api/channel/ => generated 16179 bytes in 27 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 184/199] xxx.xxx.xxx.xxx () {46 vars in 825 bytes} [Tue Jan 17 05:42:07 2023] GET /admin/jsi18n/ => generated 3343 bytes in 9 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/200] xxx.xxx.xxx.xxx () {46 vars in 876 bytes} [Tue Jan 17 05:42:07 2023] GET /static/admin/img/icon-no.svg => generated 560 bytes in 1 msecs via sendfile() (HTTP/1.0 200) 3 headers in 115 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 185/201] xxx.xxx.xxx.xxx () {50 vars in 998 bytes} [Tue Jan 17 05:42:11 2023] GET /admin/api/channel/8/change/ => generated 16820 bytes in 44 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 186/202] xxx.xxx.xxx.xxx () {46 vars in 834 bytes} [Tue Jan 17 05:42:12 2023] GET /admin/jsi18n/ => generated 3343 bytes in 7 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 187/203] xxx.xxx.xxx.xxx () {56 vars in 1126 bytes} [Tue Jan 17 05:42:17 2023] POST /admin/api/channel/8/change/ => generated 0 bytes in 46 msecs (HTTP/1.0 302) 12 headers in 729 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 188/204] xxx.xxx.xxx.xxx () {50 vars in 1278 bytes} [Tue Jan 17 05:42:17 2023] GET /admin/api/channel/8/change/ => generated 17077 bytes in 46 msecs (HTTP/1.0 200) 12 headers in 608 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 189/205] xxx.xxx.xxx.xxx () {46 vars in 834 bytes} [Tue Jan 17 05:42:18 2023] GET /admin/jsi18n/ => generated 3343 bytes in 7 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 190/206] xxx.xxx.xxx.xxx () {46 vars in 851 bytes} [Tue Jan 17 05:42:18 2023] GET /favicon.ico => generated 179 bytes in 6 msecs (HTTP/1.0 404) 8 headers in 267 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 191/207] xxx.xxx.xxx.xxx () {50 vars in 989 bytes} [Tue Jan 17 05:42:20 2023] GET /admin/api/channel/ => generated 16164 bytes in 38 msecs (HTTP/1.0 200) 11 headers in 510 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 192/208] xxx.xxx.xxx.xxx () {46 vars in 825 bytes} [Tue Jan 17 05:42:20 2023] GET /admin/jsi18n/ => generated 3343 bytes in 8 msecs (HTTP/1.0 200) 8 headers in 269 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 193/209] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:42:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 13 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 194/210] xxx.xxx.xxx.xxx () {50 vars in 1103 bytes} [Tue Jan 17 05:42:32 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/integrations/ => generated 23178 bytes in 23 msecs (HTTP/1.0 200) 9 headers in 398 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/211] xxx.xxx.xxx.xxx () {46 vars in 921 bytes} [Tue Jan 17 05:42:32 2023] GET /static/img/apple-touch-180.png => generated 733 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 111 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 195/212] xxx.xxx.xxx.xxx () {56 vars in 1212 bytes} [Tue Jan 17 05:42:36 2023] POST /integrations/579a284c-f1ef-48f7-8f87-d97cdf67d9ed/test/ => generated 0 bytes in 34 msecs (HTTP/1.0 302) 10 headers in 512 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 196/213] xxx.xxx.xxx.xxx () {50 vars in 1237 bytes} [Tue Jan 17 05:42:36 2023] GET /projects/b59281a7-a076-4010-b832-0e3c2c634e19/integrations/ => generated 23083 bytes in 28 msecs (HTTP/1.0 200) 10 headers in 496 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 197/214] xxx.xxx.xxx.xxx () {48 vars in 974 bytes} [Tue Jan 17 05:42:55 2023] GET /cloaked/c8a5c5cc0a2644f0ead695a0042bfe24fadd4af5/ => generated 179 bytes in 13 msecs (HTTP/1.0 404) 8 headers in 267 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 198/215] xxx.xxx.xxx.xxx () {48 vars in 1072 bytes} [Tue Jan 17 05:43:17 2023] GET /integrations/579a284c-f1ef-48f7-8f87-d97cdf67d9ed/verify/fba6a41457c0f2425ed99e37e02b22299897536c/ => generated 5655 bytes in 17 msecs (HTTP/1.0 200) 9 headers in 397 bytes (1 switches on core 0)
[pid: 149|app: -1|req: -1/216] xxx.xxx.xxx.xxx () {46 vars in 960 bytes} [Tue Jan 17 05:43:17 2023] GET /static/img/apple-touch-180.png => generated 733 bytes in 0 msecs via sendfile() (HTTP/1.0 200) 3 headers in 111 bytes (0 switches on core 0)
[pid: 149|app: 0|req: 199/217] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:43:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 18 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 200/218] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:44:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 16 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 201/219] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:45:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 17 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
[pid: 149|app: 0|req: 202/220] xxx.xxx.xxx.xxx () {22 vars in 320 bytes} [Tue Jan 17 05:46:23 2023] GET /ping/a9cd20f7-ac04-4eae-9cc5-28f084f2a9c5 => generated 2 bytes in 15 msecs (HTTP/1.0 200) 12 headers in 426 bytes (1 switches on core 0)
github-actions[bot] commented 1 year ago

Thanks for opening your first issue here! Be sure to follow the bug or feature issue templates!

github-actions[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

github-actions[bot] commented 1 year ago

This issue is locked due to inactivity