From aef46eadd063b2584ab591b017d477bf618e83e2 Mon Sep 17 00:00:00 2001 From: Vuong Hoang Date: Tue, 18 Mar 2025 23:44:40 -0700 Subject: [PATCH] updated files --- compose/adguard/docker-compose.yml | 15 +- compose/calibre-web/compose.yaml | 23 + compose/calibre/compose.yaml | 4 +- compose/dockge/compose.yaml | 16 +- compose/drawio/compose.yaml | 29 + compose/esphome/compose.yaml | 14 + compose/homeassistant/compose.yaml | 31 + compose/homepage/compose.yaml | 5 +- compose/paperless-ngx/compose.yaml | 3 +- compose/uptimekuma/compose.yaml | 27 + conf/calibre-web/.CALIBRE_RELEASE | 1 + conf/calibre-web/.key | 1 + conf/calibre-web/app.db | Bin 0 -> 118784 bytes conf/calibre-web/calibre-web.log | 214 + conf/calibre-web/calibre-web.log.1 | 322 + conf/calibre-web/calibre-web.log.2 | 338 + conf/calibre-web/client_secrets.json | 1 + conf/calibre-web/gdrive.db | Bin 0 -> 24576 bytes conf/homepage/bookmarks.yaml | 4 +- conf/homepage/docker.yaml | 16 +- conf/homepage/logs/homepage.log | 26793 +++++++++++++++++++++++++ conf/homepage/services.yaml | 64 +- conf/homepage/settings.yaml | 7 +- conf/traefik-esh/certs/acme.json | 2 +- 24 files changed, 27877 insertions(+), 53 deletions(-) create mode 100644 compose/calibre-web/compose.yaml create mode 100644 compose/drawio/compose.yaml create mode 100644 compose/esphome/compose.yaml create mode 100644 compose/homeassistant/compose.yaml create mode 100644 compose/uptimekuma/compose.yaml create mode 100644 conf/calibre-web/.CALIBRE_RELEASE create mode 100644 conf/calibre-web/.key create mode 100644 conf/calibre-web/app.db create mode 100644 conf/calibre-web/calibre-web.log create mode 100644 conf/calibre-web/calibre-web.log.1 create mode 100644 conf/calibre-web/calibre-web.log.2 create mode 100644 conf/calibre-web/client_secrets.json create mode 100644 conf/calibre-web/gdrive.db diff --git a/compose/adguard/docker-compose.yml b/compose/adguard/docker-compose.yml index 5185214..343aabd 100644 --- a/compose/adguard/docker-compose.yml +++ b/compose/adguard/docker-compose.yml @@ -31,20 +31,7 @@ services: - homepage.widget.password=P@@fml123 networks: - tnet - backup: - image: offen/docker-volume-backup:latest - restart: always - volumes: - # volumes to backup. - - adguard-workdir:/backup/adguard-workdir:ro - - adguard-confdir:/backup/adguard-confdir:ro - - /mnt/backup/docker/esh-vm-docker/adguard:/archive - # can omit below if not stopping service. - # - /var/run/docker.sock:/var/run/docker.sock:ro - env_file: - - .env - networks: - - tnet + volumes: adguard-workdir: null adguard-confdir: null diff --git a/compose/calibre-web/compose.yaml b/compose/calibre-web/compose.yaml new file mode 100644 index 0000000..f9c342c --- /dev/null +++ b/compose/calibre-web/compose.yaml @@ -0,0 +1,23 @@ +services: + calibre-web: + image: lscr.io/linuxserver/calibre-web:latest + container_name: calibre-web + environment: + - PUID=2000 + - PGID=2000 + - TZ=Etc/UTC + - DOCKER_MODS=linuxserver/mods:universal-calibre #optional + - OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional + volumes: + - /opt/docker/conf/calibre-web:/config + - /mnt/books/calibre/calibre_library:/books + labels: + - homepage.group=Media + - homepage.name=Calibre-Web + - homepage.icon=si-calibreweb + - homepage.description=EBook Server (esh) + - homepage.href=http://10.0.50.45:8083 + ports: + - 8083:8083 + restart: unless-stopped +networks: {} diff --git a/compose/calibre/compose.yaml b/compose/calibre/compose.yaml index ee6ddb1..12f2fc0 100644 --- a/compose/calibre/compose.yaml +++ b/compose/calibre/compose.yaml @@ -6,8 +6,8 @@ services: security_opt: - seccomp:unconfined #optional environment: - - PUID=1000 - - PGID=1000 + - PUID=2000 + - PGID=2000 - TZ=America/Los_Angeles - PASSWORD= #optional - CLI_ARGS= #optional diff --git a/compose/dockge/compose.yaml b/compose/dockge/compose.yaml index 6928a2e..41d8727 100644 --- a/compose/dockge/compose.yaml +++ b/compose/dockge/compose.yaml @@ -20,21 +20,9 @@ services: - DOCKGE_STACKS_DIR=/opt/docker/compose networks: - tnet - backup: - image: offen/docker-volume-backup:latest - restart: always - volumes: - # volumes to backup. - - dockge_data:/backup/dockge:ro - - /mnt/backup/docker/esh-vm-docker/dockge:/archive - # can omit below if not stopping service. - # - /var/run/docker.sock:/var/run/docker.sock:ro - env_file: - - .env - networks: - - tnet + volumes: - dockge_data: + dockge_data: null networks: tnet: name: traefik-net diff --git a/compose/drawio/compose.yaml b/compose/drawio/compose.yaml new file mode 100644 index 0000000..69ca03a --- /dev/null +++ b/compose/drawio/compose.yaml @@ -0,0 +1,29 @@ +version: "3.5" +services: + drawio: + image: jgraph/drawio + container_name: drawio + restart: unless-stopped + ports: + - 8087:8080 + - 8447:8443 + healthcheck: + test: + - CMD-SHELL + - curl -f http://127.0.0.1:8080 || exit 1 + interval: 1m30s + timeout: 10s + retries: 5 + start_period: 10s + labels: + - homepage.group=Apps + - homepage.name=draw.io + - homepage.icon=mdi-pencil + - homepage.description=Draw.IO Graphing (esh) + - homepage.href=http://10.0.50.45:8087 + networks: + - tnet +networks: + tnet: + name: traefik-net + external: true diff --git a/compose/esphome/compose.yaml b/compose/esphome/compose.yaml new file mode 100644 index 0000000..39f789e --- /dev/null +++ b/compose/esphome/compose.yaml @@ -0,0 +1,14 @@ +version: '3' +services: + esphome: + container_name: esphome + image: ghcr.io/esphome/esphome + volumes: + - /path/to/esphome/config:/config + - /etc/localtime:/etc/localtime:ro + restart: always + privileged: true + network_mode: host + environment: + - USERNAME=test + - PASSWORD=ChangeMe \ No newline at end of file diff --git a/compose/homeassistant/compose.yaml b/compose/homeassistant/compose.yaml new file mode 100644 index 0000000..7487334 --- /dev/null +++ b/compose/homeassistant/compose.yaml @@ -0,0 +1,31 @@ +services: + homeassistant: + image: homeassistant/home-assistant:latest + container_name: homeassistant + environment: + - PUID=2000 + - PGID=2000 + - TZ=America/Los_Angeles + volumes: + - homeassistant_data:/config + #- /opt/docker/conf/homeassistant:/config + ports: + - 8123:8123 #optional + # devices: + # - /path/to/device:/path/to/device #optional + restart: unless-stopped + env_file: + - .env + labels: + - homepage.group=Apps + - homepage.name=Home Assistant + - homepage.icon=si-homeassistant + - homepage.description=Home Automation (esh) + - homepage.href=http://10.0.50.45:8123 + networks: + - traefik-net +networks: + traefik-net: + external: true +volumes: + homeassistant_data: null diff --git a/compose/homepage/compose.yaml b/compose/homepage/compose.yaml index 82a0484..597778e 100644 --- a/compose/homepage/compose.yaml +++ b/compose/homepage/compose.yaml @@ -16,9 +16,12 @@ services: - tnet labels: - traefik.enable=true - - traefik.http.routers.homepage.rule=host(`10.0.50.45`) + - traefik.http.routers.homepage.rule=host(`eshhome`) || host(`10.0.50.45`) + || host (`eshhome.esteban.net`) - traefik.http.services.homepage.loadbalancer.server.port=3000 - traefik.http.routers.homepage.priority=1 + env_file: + - .env networks: tnet: name: traefik-net diff --git a/compose/paperless-ngx/compose.yaml b/compose/paperless-ngx/compose.yaml index 2541600..06b88b3 100644 --- a/compose/paperless-ngx/compose.yaml +++ b/compose/paperless-ngx/compose.yaml @@ -72,8 +72,7 @@ services: env_file: - .env networks: - - tnet - + - tnet networks: tnet: name: traefik-net diff --git a/compose/uptimekuma/compose.yaml b/compose/uptimekuma/compose.yaml new file mode 100644 index 0000000..cf40744 --- /dev/null +++ b/compose/uptimekuma/compose.yaml @@ -0,0 +1,27 @@ +version: "3.3" +services: + uptime-kuma: + restart: always + ports: + - 3001:3001 + volumes: + - uptime-kuma:/app/data + container_name: uptime-kuma + image: louislam/uptime-kuma:latest + labels: + - homepage.group=Apps + - homepage.name=Uptime Kuma + - homepage.icon=mdi-arrow-up-bold-circle + - homepage.description=Service Monitoring (esh) + - homepage.href=http://10.0.50.45:3001 + - homepage.widget.type=uptimekuma + - homepage.widget.url=http://10.0.50.45:3001 + - homepage.widget.slug=nethealth + networks: + - tnet +volumes: + uptime-kuma: {} +networks: + tnet: + name: traefik-net + external: true diff --git a/conf/calibre-web/.CALIBRE_RELEASE b/conf/calibre-web/.CALIBRE_RELEASE new file mode 100644 index 0000000..4fab221 --- /dev/null +++ b/conf/calibre-web/.CALIBRE_RELEASE @@ -0,0 +1 @@ +v7.16.0 diff --git a/conf/calibre-web/.key b/conf/calibre-web/.key new file mode 100644 index 0000000..159ee93 --- /dev/null +++ b/conf/calibre-web/.key @@ -0,0 +1 @@ +4cmGYSmUwGmiiS5AX8RYW0JsWiqOstTJ-rkmBgF8DcI= \ No newline at end of file diff --git a/conf/calibre-web/app.db b/conf/calibre-web/app.db new file mode 100644 index 0000000000000000000000000000000000000000..ee341e8d9667e2599c6253a8a516e0ff2663748f GIT binary patch literal 118784 zcmeI5Uu+!5eaH8B{Bw8W=_JcCExW2Nv{jMtk-GnXn5Zx%QHmUjwDqU1VAt!t-MQn2 zcf04^JxR1B6qFqFp()xT=tGe{vncY3^-XFTQOi32LOCEQ3<~Or5pPBj1{FdbWF2A&@J1pHWt+wK%3(^585|N%y zrzJ^xjXp=|;~&3F7vug7og;zkQJ1eti!Z-0L9t`0|Ku`9Q~&K=j7orT5C8!X009sH z0T2KI5C8!X009sHfzOb@%#)Pa6Uk&slcLGn(*A3yQ*^=s0w4eaAOHd&00JNY0w4ea zAg~t%wy#AGN>7&}cV0>!j2=qTaWJ;oQ0ls3c&Fz#nPDgva~4&zecD#7t&X!)$XCkM zrRq}d+4JWbdh_M=>Wi03%{ML&Sk6FtX8k6ND%nSGtFW_vO zIf|w@%Is45t=U$$uD7?;H@6%`r2xn3vP^nbX)AA<#?HNFcIyhiZzwIB-M)Q%?0__L zG(yc5_ge3Km)VYCKF`{U-byn=prEevM|;tIK8rjPsh>;H)CW@Pr>PH8|N2?vh&(_5 z1V8`;KmY_l00ck)1V8`;KmY{p4}pErrz74Qq-Y}gbliK<5|7SA#2bn+Dn?usC6W3u z+5g{_Qr}JeUFx6jPwDU!5C8!X009sH0T2KI5C8!X009sHf!zo^87=vCedsSkqEAE% zzL6jNtBUF9(TM-o2;AmBJdk;kLL&4p`S`E=0W=5z0T2KI5C8!X009sH0T2KI5CDPC zIe}OtdN|UxnHA;s|5)lnDfKh@fdd3U00ck)1V8`;KmY_l00ck)1VG?(OJI6zQaU0@ zv8HJ@TWmVw-RaIox937Bt0&{}*z$6tSgz)^T6Lk6tFVP)E?Zlu=e6uY zqtd7rvbB7!*2sQ^87J)YnrWoZ>8hifMn0P_F643x`C>X>Sjy#=3b{oR&ejTUOnxC- zOXsRfg~C#?yqGWK^7)eg`~T0lD##85KmY_l00ck)1V8`;KmY_l00cnbAtC_#{~>A& z6a@r800ck)1V8`;KmY_l00ck)1onsk?EgIii)=vv1V8`;KmY_l00ck)1V8`;K;R)F z0Q>(TY77(w1V8`;KmY_l00ck)1V8`;KmY{xhyd*WJpzktK>!3m00ck)1V8`;KmY_l z00cnbAtC_#{~>A&6a@r800ck)1V8`;KmY_l00ck)1onskxBsV8?@FovO8qSLm!k2!H?xfB*=900@8p2!H?x zfB*>G7Xr!H_od|cx25C{=&%0YN#30Pw^-L^mTWWI)=eXLz3K4B?_X0}hHFFTfQ zG%0}H?C93kiSz}-VNGW7lrLVoaB=z4we(k3uBGR6ZJvjnTfek&;rtp8oAVwvpT4wm zZspR-+L@KhqMSlFF@I+*IW;psA9?#_QO~+*Zjx41G`Xc4o8i0tp}L0ScB!op4A*uD z0P#%QQJk(llvzu$9l334dP8Sg`YbWOa^d0%udIl1^fr?zx#ciTl%IHoq_}`RATg|U z?h)wruTM|SoH!A=V+x@525U8B#Zou)>nwDW4B-q#?LxELC6v7$GPEy^Ms<%>yR(1a z)XdCG<%$2GQD-HN{YwY|=_;V;~?A zYVCpOU0S|lnb&oVS$=EJm9q08&FHnBtT?>}48=RZDJ zIspyfY;{=r^2O!VRjM7YnZ<0g)pcm53I#Xx7V95sO=d8QkCz~Eo`;xd6p=?z*A9br zb?w4SS69+=Trb=#q0Q4NCEQz4?k zm|dXK{Hf?hkeAYGnKy!}rN2^%`R%I{t`65lfy6L)(d)aRo5@g-WW34wMFMcIsoN~jwsszWnOP!$f=>&5ZOndhF1Tyxd8YYf@!jV`0X?%78E z?L??%eUWp#*clR?zk4k*HFNlIH%Kx-Ca;DMquaG7mk*ujzdcxTj)lfN=%NX(b|&v3{6W9ccu&|K!4nF$fDSOfFMjG`9ySb=8K0% zjbx!x^Ze)diLs9r%yGdeO;0gCMJ1E}Anl93D@}j6@89Q&xY{^*t;>;AEz}{XErEv`avKeW)psRM@?Ng!h^hNGcAR)=kQPQW}V5Ikh z;U(Ewe(pmA`YX*71eJs zSk-)OWrrR&&fAK$DH8cNM+V9HQG3IUPriJ$C);M%QbV&}FG?(P1IwXa#K43}i>oHB zfys(wl$qhA&#kU6i`!-ni`CJ{f9> zKG|K`LP&;t?JO;Zm^B+*_=@KQ12o>*6;122pFfU<$S2eX-JIP)`~Q3c?`+7zx|4Ig zm-2ql;X8AOgo%3hHwCi+fq{U>L)-?UcOl0uUbi5@rJGpngn3?PmisO$@bY1V)#TPo zbl|}HYZz633AR%Tu`&xP0Iw(^+&s)1C@2SW7-Mcs29=&hokVbDk(-NyG?>GuAqnWIM|cipuLZ#X{D`sY-r zs($D_*E0NiD1Byqb(Q~mVs>r)%<|=xS>6%-XN7;)Fu2_Mgq>EB#xf6Vt%?VKt_bk| z|4;1yLy7kN`^(fHq~1tfOwFez_Wx-AUr`_q5C8!X009sH0T2KI5C8!X009u#YXY;0 zN!sQvzMM$pv-#peF29hirE}G#LSd;`Ud$JA3jSE}TT#n~xWCOI`IQ&`MailuC6cG8vEKRF*nOu1>S1Ff^wb?OO=Bcqhnfy{Ix0tV$tChkR zA|w-!FCXa>$t@L%i?wXET+CwszrF6r$R7ki00ck)1V8`;KmY_l00ck)1RgvA*#8f{ z4Nw9Q009sH0T2KI5C8!X009sH0T9@00^I(Or2bK&ZyX>10w4eaAOHd&00JNY0w4ea zAOHfNKLXE0qSC7V?suxMymR8k%y-_~{*CGUM=$*TduI~w|L*y}o&VG9kN*C9w}t(m z{1b`3aex2_fB*=900@8p2!H?xfB*4L;h9!bVuI`##+n!hs@izQ<`c`O#E ze-7tIOiIS%$z+^w$G^yK(jJ;EwrE<-BRt@FKR_k_4dkwkhtVFVU+Rzh)yVHj(p$Gr z@=XnGMXMAljY58bHA=OGVm((|sFre-g-X3rD3|J*l2wYwzH#guXOxy+x7fnVtp26( z*XEXQUD;r_mW^9ynRV-|&TgGmY`QjXt?1&z_yygbWo`P{;;t=z+P7BOtyP77($%Xc zZe2C#o6Wy!Klk`a+H1I>H%}@mxmK_jTV^x*(MRL~fEjPy_UlHKjeJctPAM8~1f9{; zQ(gqWq_}|qaU?kdCTl}=I1D{J(AnS!c{n*B(#so+3rYwj}z-0Rs1rz&FQ_h)r4l{1veit-p1>fBvP=rmTMGE}OD) zbws{5EZPh@xLvde?wFPn++14(($2rKZMQ;>c|-&$h_IU)HxJK?i5%J!Jrp(Y+=gYg z2Lf&VO*T*%x8U-C10j)rQ~caAtEkaMFA({@6hSo%sz`jIwrc7|pyCKkSvyxifAUIP1f zdzrXC`rM6~heY$8yiLm{r!zN)#PS`kW!JIGkXTVBau(2JH-}W)*1ZLmPpljIh= z&cdC{D=kHiVC7C!G6{q_rrKP7hIQi+UW2?GMmZ1iqRHO@`G{1xCoiu%4XuyxOEk)nP~Ve2MvQB+rfD|G zp^|3xd7koe3P#Hfvla0C7SJXksT+!;Zpi8eIaVT9^V2q-Y@89QosEq4RE39UB5galcU4LYxCtL?rgFRLBU{~1=4qDNT$sfhdts&KE zX-bDXs}R2PlA7%9dl1>r|8=zOdHK|;uPu{D&M zcw|Uy2s0r>&d02+&Vai*kG>F56|VkC13Md|a`{*Rnk9D4KnppE3qD=!*6%L4M?KwL zal7sZcb7ED0SvFxsAg{RmAvfcA(O79S#i`uT~YVZHp#M9$lF=43a;pg78R>|y|Fa{ zFXcna8!E@Bc-P1nQc7-V(3DMcir41??pwUlxzh$I2kzBy*c{z8bk)=tN8x%e92{8P z4)Xfm`&TZ!StCpg`ZH%N2PSRFw`C|lA#!E|1VfqBSQH<;F?S_<#8 z!XZSk483Tr>v}XC8tMCC6w3(G;QYbC9@5LDCrCp}Ck?rasKtn}L3ZNMjM~gm2%93; z6?L;atULCGcgG}Oti$wDPlC)>T5=do8lHprdr}6u$fVvp*nm9=a?H59K(|9HvE6bY z|4OQ^w1$Xy9+rm`kUPL^>22~1AISQ3uY>w)UAsdT@#}uR>9Z^6manc}NoO: (from ('::ffff:141.98.11.112', 63284, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-04 06:24:29,799] ERROR {cps.server:1349} : (from ('::ffff:141.98.11.112', 64824, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-04 09:12:09,537] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.104', 57928, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8fvóÎ^²ÍP®H\x12òÏû¬7\x90ZÂn\x0bh¿=\r½tÉ\x9f¨<Ù 3&\x94weh\x0b\x01\x8e\x8c`s¯\x81\r\n' +[2025-03-04 09:12:09,813] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.104', 57938, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ÿ\x18þ\x13!£AÅï©N÷\x94&h\x95Vt\x97È/\x1cùÑ\x14ö\x1e·$Aa\x1f\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-04 12:18:34,936] ERROR {cps.server:1349} : (from ('::ffff:185.142.236.35', 47694, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03µ\x87¶Ï'; path='|\x9fÿ7\x97]g;ç¥v¥<ñ^\x96³¨\x12x\x15¾\x05@I.\x84\x00\x00rÀ0À,À(À$À\x14À'; raw='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03µ\x87¶Ï\x1f|\x9fÿ7\x97]g;ç¥v¥<ñ^\x96³¨\x12x\x15¾\x05@I.\x84\x00\x00rÀ0À,À(À$À\x14À\n' +[2025-03-04 19:16:42,543] ERROR {cps.server:1349} : (from ('::ffff:172.214.115.59', 46218, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-05 02:05:24,381] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.70', 60542, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ß&.¯ûÏ1'; path='Z\x87\x8c>ú*äìÕI'; raw='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ß&.¯ûÏ1\tZ\x87\x8c>ú*äìÕI\n' +[2025-03-05 02:05:24,660] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.70', 60544, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¸\x00{DÔ\x88\x1e7·½\x831µÝ\x81ÜW\xad\x02`=þ\x14aÐɽèñ¡!p\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-05 04:00:00,003] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-06 04:00:00 UTC)" (scheduled at 2025-03-05 04:00:00+00:00) +[2025-03-05 04:00:00,014] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-06 04:00:00 UTC)" executed successfully +[2025-03-05 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-06 04:10:00 UTC)" (scheduled at 2025-03-05 04:10:00+00:00) +[2025-03-05 04:10:00,002] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-06 04:10:00 UTC)" executed successfully +[2025-03-05 06:00:26,437] ERROR {cps.server:1349} : (from ('::ffff:45.142.193.19', 65405, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-05 09:30:27,371] ERROR {cps.server:1349} : (from ('::ffff:45.142.193.19', 65288, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-06 01:17:21,852] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.120', 48675, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03L9©¹qÑ\x1d³×7M¬òyòË¡=Ã\x01>\x00òK\x10\x7f\x0b\x878©?k Þ l\xadûJæÅ\xa0\x03D"õ>ÛÚÍÌ,½2Ä\x8f.aI#Ê\x96L\x83\x1a\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-06 01:23:08,683] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.37', 58541, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ð\x9cì}\x04x6@"Í\x06{\x16/ZsÚ\x942\x13#\x0eò\x83\x13ìÖjºq¨\x17 óøÉÖí&íõ"M ¢xF\x9e\x95\x91\x93ÏÙ£\x1f¯\x0b\x08\x19c½bb®¶\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-06 01:23:09,970] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.126', 48895, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03÷ù!¡ÏÊþ\x1cÚ»Ý8\x1c^+\x8b1-Ææ\x93lH«s\x8fº+¿zÏÖ î°j\x81Ô±\x13·ïc21@°ÿÀ\x82\x0e\x8d\x1fîB.ÿ;ÿ`JX\x8ft=\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-06 01:25:22,741] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.94', 64602, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03÷YQåÕ\x1f½6Ê\x93Û\x8d¡\x0c¸©]Å¢\x88rGäúGNËL\x95CéM Y\x95#\x06Ã\x02`u¾Wxçó\\µ\n' +[2025-03-06 01:25:22,898] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.94', 64616, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x85&óæ\x13\x0fZA\x95\x12T\x94ri¤ô~I¸¡43\x0boúqävÛÛ¸Ó\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-06 01:29:10,357] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.93', 53853, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÈÒ\r¬Ñ%L\x1f\x041ÒÑ!ý\x83³Ë\x1dú}ºÃ\x9e\x01ßn\\¤{5-\x12 2©ïú86\x1e\x06\x1d\x86_#x_Ó\x9a\x1c3\x8dÚ\x1dêÞj¿§Ö/¬²yÍ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-06 02:19:43,723] ERROR {cps.server:1349} : (from ('::ffff:194.164.107.5', 41482, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03f¢\x10æ?ð!¿\x02¶õ²£§rL;Æ=;Qqß\x84\x19¸\x99\x80Xn¸\n' +[2025-03-06 04:00:00,002] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-07 04:00:00 UTC)" (scheduled at 2025-03-06 04:00:00+00:00) +[2025-03-06 04:00:00,005] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-07 04:00:00 UTC)" executed successfully +[2025-03-06 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-07 04:10:00 UTC)" (scheduled at 2025-03-06 04:10:00+00:00) +[2025-03-06 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-07 04:10:00 UTC)" executed successfully +[2025-03-06 13:20:27,303] ERROR {cps.server:1349} : (from ('::ffff:172.206.147.25', 42298, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-06 18:08:08,680] ERROR {cps.server:1349} : (from ('::ffff:192.155.90.220', 63350, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n' +[2025-03-06 18:08:09,901] ERROR {cps.server:1349} : (from ('::ffff:192.155.90.220', 63352, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n' +[2025-03-06 18:39:57,427] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.175', 61274, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ùn\n' +[2025-03-06 18:39:57,783] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.175', 61290, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03k\x83'; path='Vç\x98Òé~\x8c}dÙL<=\x8aA·\x1a'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03k\x83\x85Vç\x98Òé~\x8c}dÙL<=\x8aA·\x1a\n' +[2025-03-07 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-08 04:00:00 UTC)" (scheduled at 2025-03-07 04:00:00+00:00) +[2025-03-07 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-08 04:00:00 UTC)" executed successfully +[2025-03-07 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-08 04:10:00 UTC)" (scheduled at 2025-03-07 04:10:00+00:00) +[2025-03-07 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-08 04:10:00 UTC)" executed successfully +[2025-03-07 20:44:24,564] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.106', 60322, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03³cU\x96àÅz§tñ^i\x91\x1b:O©¼v°\x8bté´Ül6rÚ¬É\x8a Ó\xa03\x10_\n' +[2025-03-07 20:44:24,723] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.106', 60338, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Ô\x90g\x83£J'; path='ÿ°\x10Ò\x1b4\x87P\x9b¡'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Ô\x90g\x83£J\xa0ÿ°\x10Ò\x1b4\x87P\x9b¡\n' +[2025-03-07 23:25:39,124] ERROR {cps.server:1349} : (from ('::ffff:18.225.117.211', 42188, 0, 0)) Invalid HTTP method: '\n' +[2025-03-07 23:26:19,094] ERROR {cps.server:1349} : (from ('::ffff:18.225.117.211', 58794, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x1cqëâ¿1\x10qw\x1anûÙfܪ\x97\x13@\t^\x88+@j¦ºs]Wßú\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-03-07 23:30:02,319] ERROR {cps.server:1349} : (from ('::ffff:18.225.117.211', 57908, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n' +[2025-03-07 23:30:56,774] ERROR {cps.server:1349} : (from ('::ffff:18.225.117.211', 39502, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x9bs+÷Tø:ÕÇÕÈöhoh>xÉ\x1cõ\x82[\x9fá8ÒLMM«\x8f6\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-03-08 00:18:32,380] ERROR {cps.server:1349} : (from ('::ffff:51.81.155.132', 57842, 0, 0)) Invalid HTTP method: '\r\n' +[2025-03-08 00:18:42,533] ERROR {cps.server:1349} : (from ('::ffff:51.81.155.132', 36472, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03¹\x1cQe\x13ü\x9fÁ#7ãñ\x0eð\x85\x8dÞA \x152ê\x83uÑ\x11oi\\ý5\x1b Y£í²\x90\x18o¢\x15\x95Õad\x12ç½ß¨¬\x8fÞ¡v\x94Âû\x9eð{¨\x910\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À'\x00g\x00@ÀrÀv\x00¾\x00½À\n" +[2025-03-08 00:18:49,223] ERROR {cps.server:1349} : (from ('::ffff:51.81.155.132', 57944, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001' +[2025-03-08 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-09 04:00:00 UTC)" (scheduled at 2025-03-08 04:00:00+00:00) +[2025-03-08 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-09 04:00:00 UTC)" executed successfully +[2025-03-08 04:02:39,049] ERROR {cps.server:1349} : (from ('::ffff:20.168.7.169', 58178, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-08 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-09 04:10:00 UTC)" (scheduled at 2025-03-08 04:10:00+00:00) +[2025-03-08 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-09 04:10:00 UTC)" executed successfully +[2025-03-08 06:03:49,071] ERROR {cps.server:1349} : (from ('::ffff:180.149.125.166', 53233, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03EÉG º\x193;ñèᨧ\x8aãV\x17W»\x16Td>r¡¿E+j\x07øX\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-03-08 07:08:56,558] ERROR {cps.server:1349} : (from ('::ffff:173.255.237.49', 22662, 0, 0)) Invalid HTTP method: '\r\n' +[2025-03-08 16:52:56,993] ERROR {cps.server:1349} : (from ('::ffff:185.147.125.161', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n' +[2025-03-09 04:00:00,002] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-10 04:00:00 UTC)" (scheduled at 2025-03-09 04:00:00+00:00) +[2025-03-09 04:00:00,004] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-10 04:00:00 UTC)" executed successfully +[2025-03-09 04:06:31,308] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.107', 59138, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Aü\x8b\x80Ñø\x16\x07\x83~Ãê\x19\x90Tܤ7¡\x8cÒYÔ(c\x99*}\x1fSªà \x92ÿ &½\x1aÅØ\x00²¸'\x11\x15\x8f\x13pÃÃÂ\x0c\x0c\x1bu\x02\x96\x0cjölt\x81\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-03-09 04:06:31,585] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.107', 59146, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03íÔO¸æG\x19Ðu[\x95³Cn@$Ï1\x81\x84ÎÒ\x11\x83Çaj¢yÊ\x13{\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03íÔO¸æG\x19Ðu[\x95³Cn@$Ï1\x81\x84ÎÒ\x11\x83Çaj¢yÊ\x13{\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-09 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-10 04:10:00 UTC)" (scheduled at 2025-03-09 04:10:00+00:00) +[2025-03-09 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-10 04:10:00 UTC)" executed successfully +[2025-03-09 08:13:14,250] ERROR {cps.server:1349} : (from ('::ffff:152.32.235.96', 34210, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03lÓ_¯\x838·j\x81°¹%äÖ'»&È\x1e\x9b-\x1cA¶\x14m#ÄÜ:¾% ËÆ:\x94¹\x1f\x8d\x93`\x1cIb?³ç\x92^ºiv\x97Z!mÓ\t\x8c\x1c\x83\x9b\n" +[2025-03-09 17:24:40,471] ERROR {cps.server:1349} : (from ('::ffff:79.124.49.10', 65068, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-09 17:43:25,542] ERROR {cps.server:1349} : (from ('::ffff:4.246.247.19', 53048, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-09 18:41:05,861] ERROR {cps.server:1349} : (from ('::ffff:213.32.32.86', 37261, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03£NФÑRÀ{3\x9cDd9;Û«\x1a\t¦\x99i\x1bò'j\x12/Ø\x1c\x01Xq \x13£Î¯ÐÑÓ7ì\x85\xa0\x1a\x1f¹\x06\x1dß¿¶$ù¦º\x10\x1e\x12\x88ÃG/\x12:\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-03-09 18:47:07,596] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.12', 49305, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03x]ú\x02cé|3\x9drñ\x08¯î*æ\x01\x14òCBþ1\x7f\x03\x07\x9a®*:]\xa0 ú\x18\x00\x02Ü\x9f6\xa0'âÁ*s«AÚÎç\x8f\x8f¢§q+oɱCn$\x9dñ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-03-09 18:47:09,428] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.101', 49653, 0, 0)) Invalid http version: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03¯\x17ÁÛ\x113òCµ3\x1a½¤?x\x1b\x1d\x1dÛ2ÉÞ¦ì\xad®ò"aߢ² ùã\x87\n' +[2025-03-09 18:53:34,030] ERROR {cps.server:1349} : (from ('::ffff:213.32.32.89', 51569, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03¹kj¼1\x81ñÑ\x19Ã\x0b:î=Ã?#\t¢}\x80ß\x02÷"\x9e=\'¸,úr ö6xFwæK:>\x9b\x84ë¿ì9æò϶RÀoB\x9a¼³\x19ð|æôJ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-10 01:22:56,009] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.197', 64076, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03kÇ\x0cu^.\x0ezáR¦·Ò}\x90sæ¨\x93àíy¶ÑÉ!\x9dKÛyY\x02 Gyá^pãn¢n\x8f'<´\x99»!ñ\x1cÈC¢Wr.fqZc}\x97\x19.\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-03-10 01:22:56,317] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.197', 64086, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Xß²´\x96á\x8d;\x16¯\x0e\x856ÊÅ\x1d3Î`!¨'éSôF/4Ò\x89:\xa0\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-10 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-11 04:00:00 UTC)" (scheduled at 2025-03-10 04:00:00+00:00) +[2025-03-10 04:00:00,009] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-11 04:00:00 UTC)" executed successfully +[2025-03-10 04:10:00,002] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-11 04:10:00 UTC)" (scheduled at 2025-03-10 04:10:00+00:00) +[2025-03-10 04:10:00,004] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-11 04:10:00 UTC)" executed successfully +[2025-03-10 19:44:47,368] ERROR {cps.server:1349} : (from ('::ffff:45.156.128.117', 48355, 0, 0)) Invalid http version: '\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03\x9b\x88ñûà\x90Ï\x9dÞrôö\x01!\x8f´\x92«\x88z+\x04\x05&\x0f\x01d2\x0c¹K{\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n' +[2025-03-10 19:45:17,692] ERROR {cps.server:1349} : (from ('::ffff:45.156.128.118', 51371, 0, 0)) Invalid http version: '\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03\x7fí\x85\x9c\x05-®\x0861÷ÏÛ\x11\x94Z¢ÖKì\x07\x9e@j--Ì«\x8f\xad\x16F\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n' +[2025-03-10 19:45:39,392] ERROR {cps.server:1349} : (from ('::ffff:45.156.128.117', 52411, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03\x9fÍ\x9d\x11\x1aÕ¤\n' +[2025-03-11 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-12 04:00:00 UTC)" (scheduled at 2025-03-11 04:00:00+00:00) +[2025-03-11 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-12 04:00:00 UTC)" executed successfully +[2025-03-11 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-12 04:10:00 UTC)" (scheduled at 2025-03-11 04:10:00+00:00) +[2025-03-11 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-12 04:10:00 UTC)" executed successfully +[2025-03-11 05:00:52,675] ERROR {cps.server:1349} : (from ('::ffff:20.84.145.75', 55192, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-11 09:18:01,459] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.79', 61186, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03¢<à\x07BcÃU\x1a\x98\x98\x9eW+ü\x1d'\x8ak\x8aÔXç\x99÷\x1f\x994.£P \x19,D\x17\x7fÌ«¶æï\x86§¯ªoým\x85&§;ý5\x02\x10õAyY0ûµ\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-03-11 09:18:01,644] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.79', 61198, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03V\x03ZΦ\x02¦Vè\x12lfÙÂjÛìà\x90JëÍMX\x90N2#J\x1e\x1cô\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-12 04:00:00,006] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-13 04:00:00 UTC)" (scheduled at 2025-03-12 04:00:00+00:00) +[2025-03-12 04:00:00,011] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-13 04:00:00 UTC)" executed successfully +[2025-03-12 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-13 04:10:00 UTC)" (scheduled at 2025-03-12 04:10:00+00:00) +[2025-03-12 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-13 04:10:00 UTC)" executed successfully +[2025-03-12 05:59:12,360] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.86', 62048, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03jïY\x88v}\xa0æ\x1dEÂS°û°ÏÕ|&:\x99\x1f0¯\x11¡ÈF\x1bÿ\x03ê \x08¾U\x9c¯ºà\x8d\t*÷äÔâáòÁ@\x82HÅ#«O*G,Ä\x15]Ø\x88\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-12 05:59:12,518] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.86', 62064, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x82\x08;\x88\x89\x9e7ÃavÎ\xa0È>¢é\x81Å®\x8df\x1c3v}XI\x19þM2\x98\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-12 14:15:47,017] ERROR {cps.server:1349} : (from ('::ffff:71.6.199.23', 57370, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03Ó;9÷\x89\x9d±ÿ£Ê'; path='Â\x8e³\x98]Yo\\_\x8fûõá2¸å>\x1a\x1b\x1a\x87\x00\x00rÀ0À,À(À$À\x14À'; raw='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03Ó;9÷\x89\x9d±ÿ£Ê\x0bÂ\x8e³\x98]Yo\\_\x8fûõá2¸å>\x1a\x1b\x1a\x87\x00\x00rÀ0À,À(À$À\x14À\n' +[2025-03-12 16:48:16,975] ERROR {cps.server:1349} : (from ('::ffff:57.152.78.233', 36454, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-12 17:22:18,673] ERROR {cps.server:1349} : (from ('::ffff:101.198.0.151', 59085, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01=\x01\x00\x019\x03\x03òÅ[iUN©n\x10Ï\x98\x17·\x17`ÃÀÅ£(\x92¯»7-4\x88»ª\x9e?è å\x04æGÌ$\x17TÕ\x7f)ß·=Ý\x02ÓBhû2¬ßt\x9e\tz<ÍÉÒ\x03\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' +[2025-03-12 21:40:16,562] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.69', 62284, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03'\x88¦\x12\x1c`ÞÌ6ÿ}yèÔ9*\x8ewÍ\x88ÃiÙÎ\x9b\x1c\x0fq\x03ï·¿ ÇÅz<\x9d³\x97\x8fêi\\íàôÊ\x99\x0f7ÓcÅ\x141Ñ\x99ÆÒ\x0fýp\x16¹\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-03-12 21:40:16,723] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.69', 62288, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03tMæ×çO'; path='iEô.'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03tMæ×çO\x0biEô.\n' +[2025-03-12 22:47:13,426] ERROR {cps.server:1349} : (from ('::ffff:141.98.11.191', 63099, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-13 01:28:32,970] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.1', 39315, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ã´Ãòè£rvö9\x9e«f\x9e\x1c3è\x81\x12a&gyïw*hÜã¯Ý\x14 $ÂQ\x18\t$úß\x12O<\x93ý\x1aN\x03<è\x9d¢\x07ÂÌ\x13\x87\t\x0caôâ\x96Ö\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-13 01:36:08,006] ERROR {cps.server:1349} : (from ('::ffff:213.32.32.93', 46829, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ôÊ©K\x02Ï\x08÷Ô¨¯@2óÃf\x13\x182¦ï#P©D/ìÊ\n' +[2025-03-13 01:36:08,772] ERROR {cps.server:1349} : (from ('::ffff:213.32.32.94', 57375, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03©\x0bóãõ¹ÒÏ\x9cjÂ\x0b!<,\x96\x11\x1eìÉã1Íà»Ø-»,Ä\x06ï J\x8fÃAí©\x95\x0b±:ÁckºÖ?x?ñ°\x12\x0e\x10JéÏ\x9f#[Nð\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-13 01:42:10,181] ERROR {cps.server:1349} : (from ('::ffff:213.32.32.92', 57055, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Ã=\x0fÁ\x1fáì$Ô\x18¡Ï¯ÒÚÿc/1\x1e²9p\x05ý\x1d\x05¼zÑO\x17 `?:ßÁ>\x1d\x1cìc>\x9fé\x9e\x10\x00×÷\x1eú«ô$\x81ÿ>\x9cNÓÁ"\x86\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-13 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-14 04:00:00 UTC)" (scheduled at 2025-03-13 04:00:00+00:00) +[2025-03-13 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-14 04:00:00 UTC)" executed successfully +[2025-03-13 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-14 04:10:00 UTC)" (scheduled at 2025-03-13 04:10:00+00:00) +[2025-03-13 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-14 04:10:00 UTC)" executed successfully +[2025-03-13 05:23:09,219] ERROR {cps.server:1349} : (from ('::ffff:172.202.118.24', 50428, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-13 11:29:34,147] ERROR {cps.server:1349} : (from ('::ffff:180.163.220.101', 8097, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x01=\x01\x00\x019\x03\x03.¿8\x06öð¦ÿ`\x011¡\xa0»\x0e\x05Gx8¿{\\\x83x^w\x15ë\x87\x1b½T \x08\x82U1\x10Ë.Bä\x8926~\x05ð`e«(\x99ÑÂk9'\x03\x17q\x8f\x05\x90\x94\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n" +[2025-03-14 00:23:05,991] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.66', 58514, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03&\x99Ó`\x1fSgq:\x1f(\x18?\x0cÒãtÓ(G\x05"\x98\x9cz\x97]»{u8+ P\x97\x9b\x90\r9\x89æÕ2´\x82_{2×÷$¤+¿nÀ\x94×\x18·&§ÆÓø\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-14 00:23:06,158] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.66', 58530, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Ö©\x86i{\x115\x83xØc5DZ\x04\x9a«\x15îm2Ë»\xa0\x89)õõï±\x94\x17\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-14 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-15 04:00:00 UTC)" (scheduled at 2025-03-14 04:00:00+00:00) +[2025-03-14 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-15 04:00:00 UTC)" executed successfully +[2025-03-14 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-15 04:10:00 UTC)" (scheduled at 2025-03-14 04:10:00+00:00) +[2025-03-14 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-15 04:10:00 UTC)" executed successfully +[2025-03-14 04:48:04,927] ERROR {cps.server:1349} : (from ('::ffff:118.26.104.19', 37030, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03¢A¨xµF%%G±\x8fV-4éÐ!Ëg\x9aùpZõ\x7f+ç\x8eA\x89\x07É «ì\x9aÕ\x1a×$ݯ¾÷\x0e\x19\x8b\x8fyh6\x9cÙ\x8bæ\x14\x1e\r\x83\x82wÏô²ñ\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' +[2025-03-14 05:45:28,012] ERROR {cps.server:1349} : (from ('::ffff:147.182.214.68', 50580, 0, 0)) Invalid HTTP method: '\r\n' +[2025-03-14 08:22:15,717] ERROR {cps.server:1349} : (from ('::ffff:47.237.116.254', 42538, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé: (from ('::ffff:57.152.78.149', 40204, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-15 03:01:52,090] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.97', 60654, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03AÃÙ7¯D\x1e\x9b\x1a\rº\x00\x9c÷Ô\x18#ÁÎ\x89·K°\x82\x16@õOØ\x883/ \x05¢òGÛË\x10\x96zÙ=£ÑÓ\n' +[2025-03-15 03:01:52,259] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.97', 60660, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03l¿ìzUY¼\x00=&u\x9e×*\x7fk\x8eèd\x11Ø®\x11ø°û\x02¶Ö<+à\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03l¿ìzUY¼\x00=&u\x9e×*\x7fk\x8eèd\x11Ø®\x11ø°û\x02¶Ö<+à\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-15 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-16 04:00:00 UTC)" (scheduled at 2025-03-15 04:00:00+00:00) +[2025-03-15 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-16 04:00:00 UTC)" executed successfully +[2025-03-15 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-16 04:10:00 UTC)" (scheduled at 2025-03-15 04:10:00+00:00) +[2025-03-15 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-16 04:10:00 UTC)" executed successfully +[2025-03-15 09:01:02,129] ERROR {cps.server:1349} : (from ('::ffff:71.6.134.233', 37852, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03CA²u¿\t\x1eêdd[\x96Ì\x19\x96`£\x9b \x972.Æ0ñTkµ\x98\x0c*N /\x96Q2\x00tÑp\n' +[2025-03-15 10:12:36,366] ERROR {cps.server:1349} : (from ('::ffff:42.200.108.110', 35525, 0, 0)) Invalid HTTP method: '\x16\x03\x00\x02\x00\x01\x00\x01ü\x03\x03úØ7¦\x0bjð÷*]\x11\x15\x1b\x10\x12\x10\x1fà=\x7fX\x17\x8a\x9aE[ø°\x8aØ5t A¨õòpÂFS\r+\x0f\x97¹Æ¿\x99[\x9dr\x82»9!1,\x99\x95%ì%ÕK\x00"ºº\x13\x01\x13\x02\x13\x03À+À/À,À0̨̩À\x13À\x14\x00\x9c\x00\x9d\x00/\x005\x00\n' +[2025-03-15 13:32:09,346] ERROR {cps.server:1349} : (from ('::ffff:45.33.80.243', 23706, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n' +[2025-03-15 13:32:09,492] ERROR {cps.server:1349} : (from ('::ffff:45.33.80.243', 23720, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n' +[2025-03-16 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-17 04:00:00 UTC)" (scheduled at 2025-03-16 04:00:00+00:00) +[2025-03-16 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-17 04:00:00 UTC)" executed successfully +[2025-03-16 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-17 04:10:00 UTC)" (scheduled at 2025-03-16 04:10:00+00:00) +[2025-03-16 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-17 04:10:00 UTC)" executed successfully +[2025-03-16 05:02:06,758] ERROR {cps.server:1349} : (from ('::ffff:20.169.106.155', 55776, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-16 06:27:53,648] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.55', 63510, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Xë;^k\r:!\\\x17@\x90Y*oã§EÇüÐÑ~¤\x14\x1af\x1b\x80\x1aÏ} (-²öÈ@\x8f°8½x\x04v`¢³3V-p~«ï`ôÚÔ-\x0f\x1f\x8e'\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-03-16 06:27:53,926] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.55', 63514, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03'; path='²a'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\xa0²a\n' +[2025-03-17 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-18 04:00:00 UTC)" (scheduled at 2025-03-17 04:00:00+00:00) +[2025-03-17 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-18 04:00:00 UTC)" executed successfully +[2025-03-17 04:10:00,006] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-18 04:10:00 UTC)" (scheduled at 2025-03-17 04:10:00+00:00) +[2025-03-17 04:10:00,007] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-18 04:10:00 UTC)" executed successfully +[2025-03-17 05:29:06,185] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.255', 58782, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Øç\x18XÚ \x04%L #X»\x83ïfóXÃ\'\x18È\x9e\x91o\x7f\x8eüü©ð\x12ùq¯h\x08W°ãËÊ\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-17 05:29:06,350] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.255', 58792, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x90§\x01é¦\t\x16á\x89Sy¹1\x8eèÖpÄÂ\x9e1IZ#ý\x90±w\x1d°\x05Õ\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-17 08:03:36,141] ERROR {cps.server:1349} : (from ('::ffff:18.189.2.111', 56792, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03íE)è\x7f\xa0\x94¶q\x99c\x83ªí\x93Öàý¥áÖ>l\x94/tãÆ\x90öB\x10\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-03-17 08:03:37,455] ERROR {cps.server:1349} : (from ('::ffff:18.189.2.111', 56854, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00{\x01\x00\x00w\x03\x03Í{ÒÖ?§\x87~:æWQî0\x7f7?èZ\x91ÄÄ\x08`pxVE|\x92M5\x00\x00\x1aÀ/À+À\x11À\x07À\x13À'; path='À\x14À'; raw='\x16\x03\x01\x00{\x01\x00\x00w\x03\x03Í{ÒÖ?§\x87~:æWQî0\x7f7?èZ\x91ÄÄ\x08`pxVE|\x92M5\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-03-17 08:03:45,987] ERROR {cps.server:1349} : (from ('::ffff:18.189.2.111', 35186, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n' +[2025-03-17 08:04:22,146] ERROR {cps.server:1349} : (from ('::ffff:18.189.2.111', 51364, 0, 0)) Invalid HTTP method: '\n' +[2025-03-17 08:28:25,576] ERROR {cps.server:1349} : (from ('::ffff:141.98.11.116', 64468, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-17 08:35:33,017] ERROR {cps.server:1349} : (from ('::ffff:141.98.11.116', 63434, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-17 13:07:54,206] ERROR {cps.server:1349} : (from ('::ffff:141.98.11.116', 64399, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-17 13:17:23,965] ERROR {cps.server:1349} : (from ('::ffff:141.98.11.116', 63146, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-03-17 13:58:56,537] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.115', 38409, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÛN\x92\x11ç'\x81\x12\x9eôé\x16¾²\x0eh±Ðɲã2póÿ½ÝC\x0e]2\x1c »ò5\x8b¢ÁÛ.\x0b\x93#Ft'¤áî\x06\x17Ðv\xad!=\x13¤°\x0fÒÀ\x9eg\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-03-17 14:05:07,193] ERROR {cps.server:1349} : (from ('::ffff:149.202.132.202', 57975, 0, 0)) Invalid http version: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03#û£\x19\x10k0ÀäÞIÀÅ¿Mñ϶Q\x84ä_ß.ú6\x87=\x96â:1 \x836\x02.n\x1a}D\x9f\x0eÍñ°|þù\x154¼´\x9cw¾÷xË#\x06z¾\x906\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-17 14:05:08,089] ERROR {cps.server:1349} : (from ('::ffff:149.202.132.201', 49715, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03>^\n' +[2025-03-17 14:11:11,061] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.34', 34779, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x032rñ1Ô-\x03+\x11{5>Ü\n' +[2025-03-17 17:02:09,773] ERROR {cps.server:1349} : (from ('::ffff:128.203.204.195', 47762, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-17 18:22:58,858] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.166', 60610, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03^\x8eì\x1bé)ÿÏD|Z\x8368þ{tÁvWcå£'; path=';,\x94DÆR'; raw='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03^\x8eì\x1bé)ÿÏD|Z\x8368þ{tÁvWcå£\xa0;,\x94DÆR\t\n' +[2025-03-17 18:22:59,169] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.166', 60616, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ïÿMyS\x83±"UÐ\x18[\x91T\x82\x06\x14£\x8d6âJ~1é\x954Ê!ï\x96\x07\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À'; path='À(À$À\x14À'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ïÿMyS\x83±"UÐ\x18[\x91T\x82\x06\x14£\x8d6âJ~1é\x954Ê!ï\x96\x07\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2025-03-17 22:38:43,240] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 54810, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03ÔrM\x0b\x9c}X\x18d%¤á\x15|\x08\x86²Z\x98@\x18yY\x1e\x00\x12\x17$¯ÆÖ 1lÔF\x9c\x13Ó©þ¯Î\x04õ\x93ÂÊs«7µ\x1f\x87:ÌÐ\x08l;\x08h¢\x84\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n' +[2025-03-17 22:39:14,201] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 51024, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x03\x8b\x1dÆ;És¤tàMì¨*\x08Ua\x1dùÜ:¸Ú¶¶q¦fÂ\x10a\x8f pñ\x01\x8e\x19ßÔ¹¶sð£é_\\Ü6\x165^i+\x9e\x91á*Ûû©÷îÝ\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n' +[2025-03-17 22:39:24,772] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 55946, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03õÉÛ\x92À©6\x9dz\x966WÍ\x16E\x85¦\x1cgÎß[ûè\x890%i\x94î@¶ j\x06Cµ\x0fú"\x0bIk\x83æI\x00³ÁòUp"\x87L;#5\x1f\x97\x8d\x98\x82Ì?\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n' +[2025-03-17 22:40:00,762] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 51360, 0, 0)) Invalid HTTP method: "\x12\x01\x00X\x00\x00\x01\x00\x00\x00\x1f\x00\x06\x01\x00%\x00\x01\x02\x00&\x00\x01\x03\x00'\x00\x04\x04\x00+\x00\x01\x05\x00,\x00$ÿ\x11\t\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00ù¸Ë\\\x94k\x89\x1fÙª<\x13KÐ{\x88\x03\\2!$¢\x81\x867Ïb9JF,Æ\x00\x00\x00\x00" +[2025-03-17 22:40:05,975] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 35852, 0, 0)) Invalid http version: '0)\x02\x01\x00\x04\x06public\xa0\x1c\x02\x04ÿÿÿÿ\x02\x01\x00\x02\x01\x000\x0e0\x0c\x06\x08+\x06\x01\x02\x01\x01\x01\x00\x05\x00' +[2025-03-17 22:40:11,160] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 35858, 0, 0)) Expected GET method; Got command='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'; path='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02'; raw='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02' +[2025-03-17 22:40:11,342] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 39876, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x8c\x81¤/¶T|\x9eÃgé\x92ü×s\x92tÆ´£CÈü\x9fÙÖ4)â\x95¹y .¤@\t\x18\x85Îè$e¾\x96Ï#\x92ü¦&Qk\x84#7ç·5&ÿ\x93\x1aÂ\xa0\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n' +[2025-03-17 22:40:11,736] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 39890, 0, 0)) Invalid http version: 'OPTIONS sip:nm SIP/2.0\r\n' +[2025-03-17 22:40:12,130] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 39896, 0, 0)) Invalid http version: 'OPTIONS rtsp://example.com RTSP/1.0\r\n' +[2025-03-17 22:40:22,746] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 39926, 0, 0)) Expected GET method; Got command='\x00'; path='««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03'; raw='\x00\x1e««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03' +[2025-03-17 22:40:27,923] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 41786, 0, 0)) Invalid http version: '\x80\x00\x00(rþ\x1d\x13\x00\x00\x00\x00\x00\x00\x00\x02\x00\x01\x86\xa0\x00\x01\x97|\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +[2025-03-17 22:40:33,126] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 41862, 0, 0)) Invalid HTTP method: '\x00í\x00\x00\x01\x00\x00\x00\x01<\x01,\x00\x00\x80\x00\x7fÿ\x7f\x08\x00\x00\x00\x01\x00³\x00:\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00(DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=non-abc-existent-ser-vice-123-a-a-bc-asdf)(CID=(PROGRAM=sqlplus)(HOST=__jdbc__)(USER=)))(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=10)))' +[2025-03-17 22:40:33,305] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 50190, 0, 0)) Invalid http version: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03%£ÉÂI/C³;½xf\x08ê×´=é\x9f\x8ax\x00N¯Æ=\x82äkrË\x0c Q\x86ÍçBoÄÇio®VÍc"ñEN\x80ËÏ\x1aâD&w)H\x811ý×\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n' +[2025-03-17 22:40:38,725] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 50204, 0, 0)) Invalid HTTP method: '\x00\x9c\x00\x01\x1a+: (from ('::ffff:45.82.78.104', 50212, 0, 0)) Expected GET method; Got command='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00'; path='\x00\x00\x00'; raw='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x0b\x00\x00\x00' +[2025-03-17 22:40:49,109] ERROR {cps.server:1349} : (from ('::ffff:45.82.78.104', 48392, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05º\x01\x00\x05¶\x03\x03ÄJq\x1aî?¤#ÙÄ\x87gË+Ê$/7muc¿gKY\x1egO[¨ÍY Ϩø5@\rIä#C@.³\x03¢>êlª}^?\x80\x89º©D/y.$\x98\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n' +[2025-03-18 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-19 04:00:00 UTC)" (scheduled at 2025-03-18 04:00:00+00:00) +[2025-03-18 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-19 04:00:00 UTC)" executed successfully +[2025-03-18 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-19 04:10:00 UTC)" (scheduled at 2025-03-18 04:10:00+00:00) +[2025-03-18 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-19 04:10:00 UTC)" executed successfully +[2025-03-18 05:14:39,057] ERROR {cps.server:1349} : (from ('::ffff:123.58.207.140', 41910, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03`Ó\x80/Þ/)àýðçã\x92Q½Æ§ûx\x8cÌçÛÝp\x1eóhëJ\x03\t \x9d¥\x8fo\x83:\n' +[2025-03-18 05:14:39,365] ERROR {cps.server:1349} : (from ('::ffff:123.58.207.140', 42074, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n' +[2025-03-18 18:45:42,934] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.39', 65028, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\n' +[2025-03-18 18:45:43,094] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.39', 65040, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03·`\x9d\x80Ô\x9bf<¶_¶=\xa0×sE\x8a\xad\x08&!î\x9a,Å»æä\x1b\x02\x9d=\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-18 22:09:03,011] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 39024, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03ç\x07ýB\x81ò\\?UêëËmé\x94YyR÷Ys(\x9c¸¼]N\x1bõ·¸â 1-oÆ0l8Ç\x88Qù\x9dx(Ó\x11\x14,2ÔÑ=\x1d7\x84£RFB¡¡\x05\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-18 22:09:33,856] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 51186, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03·Ð\x1aàå\x81`oqVl\x95ÞOJòæ·\x16ø\x13@\r\x9cä\x84\x18\x88æ\x14Y\x1c \x9dãFµ\x01¹\x0c=Lb¿é|\x95\x8eFQòLk\\sPQA\x96Ô¾R`k,\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-18 22:09:44,362] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 43162, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03=ÿ%,\x04Û½\x18\x96\x03\x9bBYÈl§C\xad\x03y\x93ª²\x1aa0#ÍÍòLã Åf/\x9fÕºR\\¡{¡*«uqò9\x95ú*OÙ\x95\xa0\\ô\x9a"ý¸Ü%\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-18 22:10:20,206] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 45564, 0, 0)) Invalid HTTP method: "\x12\x01\x00X\x00\x00\x01\x00\x00\x00\x1f\x00\x06\x01\x00%\x00\x01\x02\x00&\x00\x01\x03\x00'\x00\x04\x04\x00+\x00\x01\x05\x00,\x00$ÿ\x11\t\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00ù¸Ë\\\x94k\x89\x1fÙª<\x13KÐ{\x88\x03\\2!$¢\x81\x867Ïb9JF,Æ\x00\x00\x00\x00" +[2025-03-18 22:10:25,368] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 45576, 0, 0)) Invalid http version: '0)\x02\x01\x00\x04\x06public\xa0\x1c\x02\x04ÿÿÿÿ\x02\x01\x00\x02\x01\x000\x0e0\x0c\x06\x08+\x06\x01\x02\x01\x01\x01\x00\x05\x00' +[2025-03-18 22:10:30,547] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 50592, 0, 0)) Expected GET method; Got command='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'; path='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02'; raw='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02' +[2025-03-18 22:10:30,712] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 50608, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03ÊñUÎj±\x99\x8aÂ{\x9e¸S\x94ïRì±â\x8f6ÎõÓ¯\x8fòżª$7 ÿc¤Ñ÷ËÒ±½²k5;²©{Ò=äÇ\rt\x19Sïk²§Ô`ýZ\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-18 22:10:31,064] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 50622, 0, 0)) Invalid http version: 'OPTIONS sip:nm SIP/2.0\r\n' +[2025-03-18 22:10:31,412] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 50630, 0, 0)) Invalid http version: 'OPTIONS rtsp://example.com RTSP/1.0\r\n' +[2025-03-18 22:10:41,912] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 40984, 0, 0)) Expected GET method; Got command='\x00'; path='««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03'; raw='\x00\x1e««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03' +[2025-03-18 22:10:47,095] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 41004, 0, 0)) Invalid http version: '\x80\x00\x00(rþ\x1d\x13\x00\x00\x00\x00\x00\x00\x00\x02\x00\x01\x86\xa0\x00\x01\x97|\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +[2025-03-18 22:10:52,261] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 37138, 0, 0)) Invalid HTTP method: '\x00í\x00\x00\x01\x00\x00\x00\x01<\x01,\x00\x00\x80\x00\x7fÿ\x7f\x08\x00\x00\x00\x01\x00³\x00:\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00(DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=non-abc-existent-ser-vice-123-a-a-bc-asdf)(CID=(PROGRAM=sqlplus)(HOST=__jdbc__)(USER=)))(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=10)))' +[2025-03-18 22:10:52,453] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 37146, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x07\x82#eÌ"ð\t·7\x15:ë.\x15\x02Sab®\x8cPá0ÑûPC)Ìñ\x03 \x01¾ÿÇ[a?]\x0bÑ|\n' +[2025-03-18 22:10:57,793] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 37162, 0, 0)) Invalid HTTP method: '\x00\x9c\x00\x01\x1a+: (from ('::ffff:45.82.79.27', 52646, 0, 0)) Expected GET method; Got command='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00'; path='\x00\x00\x00'; raw='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x0b\x00\x00\x00' +[2025-03-18 22:11:08,132] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 55770, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05º\x01\x00\x05¶\x03\x03õÒ\x8b]\x8f´|ß©\x90sP@R\x1dEê`Pn\x1f¼\x99_à·]\x82\x07çä\x0e #ÿÆ\x90\xa0F$w\x03,*\x91ð\x8b¢îE\x83\x0bh^|Îî\x9a\x08\x9aõ±@\n' +[2025-03-18 22:26:53,892] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 42126, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03Óɶ`\x15\x11ÿ7¦¤³\x12;®r]\x04\x91sáéý¿\x9f9?(\x18Ê\x93\x02\x80 «}\x8a\x0c{\x90\x06ÞÝdE8©\x82\x98+s1\xa0\x9eÈ\x84±\x08*\x1f«·áøÊ+\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-18 22:27:24,772] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 37948, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x90\x11j\x94i\x7fs}KR\x03m\n' +[2025-03-18 22:27:35,282] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 48444, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03ù\n' +[2025-03-18 22:28:11,146] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 59186, 0, 0)) Invalid HTTP method: "\x12\x01\x00X\x00\x00\x01\x00\x00\x00\x1f\x00\x06\x01\x00%\x00\x01\x02\x00&\x00\x01\x03\x00'\x00\x04\x04\x00+\x00\x01\x05\x00,\x00$ÿ\x11\t\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00ù¸Ë\\\x94k\x89\x1fÙª<\x13KÐ{\x88\x03\\2!$¢\x81\x867Ïb9JF,Æ\x00\x00\x00\x00" +[2025-03-18 22:28:16,309] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 59196, 0, 0)) Invalid http version: '0)\x02\x01\x00\x04\x06public\xa0\x1c\x02\x04ÿÿÿÿ\x02\x01\x00\x02\x01\x000\x0e0\x0c\x06\x08+\x06\x01\x02\x01\x01\x01\x00\x05\x00' +[2025-03-18 22:28:21,478] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 55488, 0, 0)) Expected GET method; Got command='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'; path='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02'; raw='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02' +[2025-03-18 22:28:21,637] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 55490, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x9dú\x9bzpQ\x8eAÍQª@H\x17sÍ\x88¬÷¶ÓVFÂÕeVýù\x82fR \x89Úö\x85\x8e|fs¿<\x84Z\xadA\x91i\x9aÐHdå½\x9c8ã+«\x91¸iõl\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-18 22:28:21,962] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 55506, 0, 0)) Invalid http version: 'OPTIONS sip:nm SIP/2.0\r\n' +[2025-03-18 22:28:22,296] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 55514, 0, 0)) Invalid http version: 'OPTIONS rtsp://example.com RTSP/1.0\r\n' +[2025-03-18 22:28:32,966] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 50024, 0, 0)) Expected GET method; Got command='\x00'; path='««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03'; raw='\x00\x1e««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03' +[2025-03-18 22:28:38,140] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 50050, 0, 0)) Invalid http version: '\x80\x00\x00(rþ\x1d\x13\x00\x00\x00\x00\x00\x00\x00\x02\x00\x01\x86\xa0\x00\x01\x97|\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +[2025-03-18 22:28:43,310] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 43484, 0, 0)) Invalid HTTP method: '\x00í\x00\x00\x01\x00\x00\x00\x01<\x01,\x00\x00\x80\x00\x7fÿ\x7f\x08\x00\x00\x00\x01\x00³\x00:\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00(DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=non-abc-existent-ser-vice-123-a-a-bc-asdf)(CID=(PROGRAM=sqlplus)(HOST=__jdbc__)(USER=)))(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=10)))' +[2025-03-18 22:28:43,484] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 43498, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03§1ìùLõ]å\x086\x18\x0bÀ\x11\x9cÛ;ÜÔ\x9e1ÛÁêíC£{¬ÎíU Ô¡×QC\x04\x07\x8b\x95ÙVè¿Ì(5ëE\x9b.üí¤\x1aë\x93h\x1b\x13Òrv\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-18 22:28:48,828] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 43500, 0, 0)) Invalid HTTP method: '\x00\x9c\x00\x01\x1a+: (from ('::ffff:45.82.79.27', 39844, 0, 0)) Expected GET method; Got command='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00'; path='\x00\x00\x00'; raw='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x0b\x00\x00\x00' +[2025-03-18 22:28:59,175] ERROR {cps.server:1349} : (from ('::ffff:45.82.79.27', 52186, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x05º\x01\x00\x05¶\x03\x03ÒS\x0f¡»\x1b\x0f\x00RÿhMPã!æµÿÎ\x95'; path=')M[\x8cMØ'; raw='\x16\x03\x01\x05º\x01\x00\x05¶\x03\x03ÒS\x0f¡»\x1b\x0f\x00RÿhMPã!æµÿÎ\x95\x1f)M[\x8cMØ\x0c\n' +[2025-03-19 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-20 04:00:00 UTC)" (scheduled at 2025-03-19 04:00:00+00:00) +[2025-03-19 04:00:00,012] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-20 04:00:00 UTC)" executed successfully +[2025-03-19 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-20 04:10:00 UTC)" (scheduled at 2025-03-19 04:10:00+00:00) +[2025-03-19 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-20 04:10:00 UTC)" executed successfully diff --git a/conf/calibre-web/calibre-web.log.1 b/conf/calibre-web/calibre-web.log.1 new file mode 100644 index 0000000..9e63796 --- /dev/null +++ b/conf/calibre-web/calibre-web.log.1 @@ -0,0 +1,322 @@ +[2025-02-02 10:31:05,460] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.21', 59486, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03f\x06\x08f\x7f: (from ('::ffff:147.185.132.21', 59490, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x91þ\x0cIïVÄG\x1aékX×\x85Ðü¶\x18)PQ\x87¯ô\x87ÈQ\x0c§\x93ÌÃ\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-02 13:39:34,299] ERROR {cps.server:1349} : (from ('::ffff:204.76.203.71', 59718, 0, 0)) Invalid HTTP method: '\x04\x01\x01»\x00\x00\x00\x01proxychecker\x00api.ip.pn\x00' +[2025-02-02 13:39:34,309] ERROR {cps.server:1349} : (from ('::ffff:204.76.203.71', 59708, 0, 0)) Invalid HTTP method: '\x05\x01\x00' +[2025-02-02 20:14:34,315] ERROR {cps.server:1349} : (from ('::ffff:51.178.236.250', 47301, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x1aßþ³2±=è1\x11\x19?#\x8a\x7f6\x17k=Ñ\x8a±÷Ýs(¿Ò\x1fH\x1d\r ¶¸¡Îù©p²¢j!=tÂý=í#Òr¡òNL\x1bá\x89ØBiß?\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-02 20:21:06,602] ERROR {cps.server:1349} : (from ('::ffff:137.74.239.146', 50983, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03$Û\x8d\x92ã2qkH¼R\x08`è-\x84+ \x81\x14*ÈÉÐ'-} I6îy \x1ajÁM\x8cØ2,ö1s\x8f\x1f¡9*B4Óq\x00\x86ÎÒ\x03\x9fé\x07\x90,2É\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-02-02 20:21:07,785] ERROR {cps.server:1349} : (from ('::ffff:137.74.239.152', 47737, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÂÌÕ2ÃÞ\x07\x03Ú\x18æ±\x8eó1Â\x1a\x12\x9b3{<Áû\x8d¾?\x01z!\x10- æá©¿ªCAJ\x84\x02Iî<ë'\xad¬(82×óA\x83\x85{\x93à@\x0f\x1c)\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-02-02 20:27:07,950] ERROR {cps.server:1349} : (from ('::ffff:5.196.113.1', 57943, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x820#¢a;z\x03\x8dÇ¿\x80|\x8c\x9e«3ã\x1eÍÝÆ\x93y¦Ï\x9d:s\x993Ù \x0bDWÿÎ2`\x1b\x1b\x95\x92\x11Á\x04\x19\x0fÏ\x1eIk\x14¼ý\r\x1fï\x1f¦Ç\x83$ó\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-02 22:06:40,286] ERROR {cps.server:1349} : (from ('::ffff:172.214.115.102', 41846, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-03 01:32:44,245] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.213', 64484, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03´\x90O\x9e>(¨ÖÝv8×\x1a\x1dMëRÒ\x0f-[±¸0ýdÙ.AÔ¼« F`\x1b$XTT\xadEð¶\\ÒVvWÚ\x88\x80ÃN\x7f·e\x97{8jE²´\x8b\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-03 01:32:44,558] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.213', 64494, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x031¯â\x86\x0cîë\x7f¿\x8cYñ´EX\x01Âc\x01qF×\x81ïfy\x061ì\x19o\x84\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-03 02:10:55,057] ERROR {cps.server:1349} : (from ('::ffff:80.82.77.202', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n' +[2025-02-03 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-04 04:00:00 UTC)" (scheduled at 2025-02-03 04:00:00+00:00) +[2025-02-03 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-04 04:00:00 UTC)" executed successfully +[2025-02-03 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-04 04:10:00 UTC)" (scheduled at 2025-02-03 04:10:00+00:00) +[2025-02-03 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-04 04:10:00 UTC)" executed successfully +[2025-02-03 19:30:51,110] ERROR {cps.server:1349} : (from ('::ffff:92.63.197.55', 22328, 0, 0)) Expected GET method; Got command='\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=hello'; raw='\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie: mstshash=hello\r\n' +[2025-02-03 20:52:42,747] ERROR {cps.server:1349} : (from ('::ffff:204.76.203.71', 47442, 0, 0)) Invalid HTTP method: '\x04\x01\x01»\x00\x00\x00\x01proxychecker\x00api.ip.pn\x00' +[2025-02-03 20:52:42,748] ERROR {cps.server:1349} : (from ('::ffff:204.76.203.71', 47432, 0, 0)) Invalid HTTP method: '\x05\x01\x00' +[2025-02-04 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-05 04:00:00 UTC)" (scheduled at 2025-02-04 04:00:00+00:00) +[2025-02-04 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-05 04:00:00 UTC)" executed successfully +[2025-02-04 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-05 04:10:00 UTC)" (scheduled at 2025-02-04 04:10:00+00:00) +[2025-02-04 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-05 04:10:00 UTC)" executed successfully +[2025-02-04 09:21:57,633] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.112', 60032, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x97*\x80ë\x14(/AÅláz\x03BºU\x017Ûû\x82"è\x84§W\rìÆ§«u u7\x19ù\x175fã67\x05¼\x1f\x86:µ\x0c\x05\x16\x9d\x91Zî\tA¥7É4\x1dB\x9d\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-04 09:21:57,899] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.112', 60048, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03£\x96qÈ*îSfµ\x8c\x95Ñì-[\xadL^Q\x91ºmIñ§fïùª"ox\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À'; path='À(À$À\x14À'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03£\x96qÈ*îSfµ\x8c\x95Ñì-[\xadL^Q\x91ºmIñ§fïùª"ox\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2025-02-04 10:11:11,058] ERROR {cps.server:1349} : (from ('::ffff:152.32.245.27', 43772, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03Õä«Þ\x90×Ë=»Ö\x8f\x83\'öïçKD\x99\x01\x98e>e\x8d\x106£LO\xad> ¨\x87dp\x81µà¾ÕÓ\x10\x84ÃÊ2zÇÌÑX~TÏ"\x19§eÙð7E¶\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-04 10:11:11,547] ERROR {cps.server:1349} : (from ('::ffff:152.32.245.27', 43880, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n' +[2025-02-04 15:35:31,413] ERROR {cps.server:1349} : (from ('::ffff:51.8.71.41', 35068, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-04 15:58:00,826] ERROR {cps.server:1349} : (from ('::ffff:145.239.154.82', 33174, 0, 0)) Invalid http version: '\x16\x03\x00\x00i\x01\x00\x00e\x03\x03U\x1c§ärandom1random2random3random4\x00\x00\x0c\x00/\x00\n' +[2025-02-05 01:28:37,519] ERROR {cps.server:1349} : (from ('::ffff:91.220.163.70', 65061, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-02-05 01:59:26,399] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.240', 59254, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x9cÊ~sdʦ×-sÕ¥ãª\x8aç\x93úc'4\x80º<å\rFhBf\rì Rí^\x0bh)~e\x0fb\x90\n" +[2025-02-05 01:59:26,705] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.240', 65344, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03G\x86÷¬Ú9\x03m¿o\x0fVÚì{\x85)¸^\x98Ðeê\\H;pvvòox\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-05 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-06 04:00:00 UTC)" (scheduled at 2025-02-05 04:00:00+00:00) +[2025-02-05 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-06 04:00:00 UTC)" executed successfully +[2025-02-05 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-06 04:10:00 UTC)" (scheduled at 2025-02-05 04:10:00+00:00) +[2025-02-05 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-06 04:10:00 UTC)" executed successfully +[2025-02-05 13:58:57,280] ERROR {cps.server:1349} : (from ('::ffff:194.164.107.4', 46498, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8bÈ£å)\x98\x052\x11\x91\x8d\x16@\\3X\x83<ª>i4ê3òLåò÷ó\r4 \x15Ìo%8¦\x86>¨ü%~\xad¼\x88QÅjòµOéh\x19yûEí³v\n' +[2025-02-06 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-07 04:00:00 UTC)" (scheduled at 2025-02-06 04:00:00+00:00) +[2025-02-06 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-07 04:00:00 UTC)" executed successfully +[2025-02-06 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-07 04:10:00 UTC)" (scheduled at 2025-02-06 04:10:00+00:00) +[2025-02-06 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-07 04:10:00 UTC)" executed successfully +[2025-02-06 04:28:34,459] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.255', 57600, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x9aæ¶]øÜME\x9bÛÇ\x86\'bÂ\x08Z&|\x03\x939!\x8cÖm\x84§Pö \x9e Í\x80~êF\\~U\x1b\'`Rô$£>Yf\x00\x10\x9a~\x0b\x0c\x8bѱ"\x1fd \x96\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-06 04:28:34,769] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.255', 57614, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ªÝ\x92\x82®\x13Óú=\x9e»_\x1a\t\x89Óú\x0eA\x95áËb5ò6ÄEÊ\x81=©\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-06 06:58:39,320] ERROR {cps.server:1349} : (from ('::ffff:172.169.108.89', 52262, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-06 12:16:33,517] ERROR {cps.server:1349} : (from ('::ffff:3.21.43.220', 38638, 0, 0)) Invalid HTTP method: '\n' +[2025-02-06 12:21:48,820] ERROR {cps.server:1349} : (from ('::ffff:3.21.43.220', 52532, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03È[õ#\x9aHÉñ(ÇlZ\r\x06GØè¼aµc\x95D\x93I\x94(z+Üë\x99\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-02-06 12:24:10,931] ERROR {cps.server:1349} : (from ('::ffff:3.21.43.220', 50190, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03ÿ?+\x986\x19Àø~\x01\x9b\x83\x17Ô,\x98Q0_\x1b\x90<\x02\xad;.G\x80\rÆã3\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-02-06 12:24:17,637] ERROR {cps.server:1349} : (from ('::ffff:3.21.43.220', 55088, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n' +[2025-02-06 20:07:12,790] ERROR {cps.server:1349} : (from ('::ffff:92.255.85.172', 31788, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x00\x93\x01\x00\x00\x8f\x03\x03g¥\x16}ÈCC³\x9f\x91Kñü\\\x9d<è\x89xÛ\x7f\x99\x7f\x07×'\x84R@ì¬Þ\x00\x00&À,À+À0À/À$À#À(À'À\n" +[2025-02-07 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-08 04:00:00 UTC)" (scheduled at 2025-02-07 04:00:00+00:00) +[2025-02-07 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-08 04:00:00 UTC)" executed successfully +[2025-02-07 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-08 04:10:00 UTC)" (scheduled at 2025-02-07 04:10:00+00:00) +[2025-02-07 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-08 04:10:00 UTC)" executed successfully +[2025-02-07 08:48:53,387] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.94', 61866, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x1a¡\xad)\ti\x93}sËETØe\x06~¤\x1e\x0b\x99¼}òÚPYÓtç\xa0%; ¨È\x06Ãàé\xa0\x15Ì:´ò¤\x0e\x0c\x85\x95c\xa0\n' +[2025-02-07 08:48:53,544] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.94', 61870, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03k8ô§\x1bHêÓ\r\x9e\x85Ȩ\x0fR\x05&\x9dµ_NFêßpç\x01o&óþ\x14\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-07 10:12:46,357] ERROR {cps.server:1349} : (from ('::ffff:165.154.138.33', 52420, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03,\x1d#ë¼PG\x95ÚW\rt|\x8c8\x15\x7fùÍ\x8fÍ}{ô\x0c\x89S\x1f\x12¢I³ \x1a\x1d~2K\x0bÓâ\x86áêÈ\x94\x0e»ý\x16A/\tùGgwq\x9e\x86/ý\x17%\x19\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' +[2025-02-07 22:17:33,671] ERROR {cps.server:1349} : (from ('::ffff:48.216.197.42', 45176, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-07 22:56:45,534] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.169', 61804, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03¢ejq!\x1bR\x03ÉvE\x17[¢sè\x80¶Ú\x01\x02z\x13jP\x82\x87uB'd© eY/Ë«m\x18\x14Á!Ü\x9ad,\x8c£®\x11èÇ\x96^\x14\xad[øÊ\x95<¬v}\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-02-07 22:56:45,846] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.169', 61818, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x1d»ä\x92µï\x8f\x80ª\x8aSÑ\x87\x12×A6Ó¦ÎD¶(;a,\x03E\x0b1÷"\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2025-02-08 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-09 04:00:00 UTC)" (scheduled at 2025-02-08 04:00:00+00:00) +[2025-02-08 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-09 04:00:00 UTC)" executed successfully +[2025-02-08 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-09 04:10:00 UTC)" (scheduled at 2025-02-08 04:10:00+00:00) +[2025-02-08 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-09 04:10:00 UTC)" executed successfully +[2025-02-08 20:13:33,119] ERROR {cps.server:1349} : (from ('::ffff:57.152.78.170', 47140, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-08 21:01:00,049] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.169', 61442, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Û\x90d\x8adB\x87!«¶V\x0bÉùR\x9d®&þöùÙCë\r?Nm\x08ÞÃ\x07 ü«ó}0Òí\x9aeH\x00âÇ%Ê\x1f\xa0!l\x0f^\x1d>¶\x88\x82\x9a)¥%ÿÄ\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-08 21:01:00,360] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.169', 61456, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x13Æø\x13Ö\x14M¥'; path='\x9c&ºjñFú\'«Å\x84r!Ãn"\xad'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x13Æø\x13Ö\x14M¥\x0c\x9c&ºjñFú\'«Å\x84r!Ãn"\xad\n' +[2025-02-09 01:42:44,454] ERROR {cps.server:1349} : (from ('::ffff:156.229.233.2', 42570, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03æIÔ£ó\x97Çx#þ\x87È"P·ue¯Y\x8bkgÄÝ\x9ffÙè]\x88ÓÍ `\x84\x85ÖJ\x97\x7f\x1e\x82ç#¯f|&P«²gbpÔ\x9b¦\x15Dcï\x97\x97\x9f\x17\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-09 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-10 04:00:00 UTC)" (scheduled at 2025-02-09 04:00:00+00:00) +[2025-02-09 04:00:00,010] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-10 04:00:00 UTC)" executed successfully +[2025-02-09 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-10 04:10:00 UTC)" (scheduled at 2025-02-09 04:10:00+00:00) +[2025-02-09 04:10:00,002] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-10 04:10:00 UTC)" executed successfully +[2025-02-09 20:07:08,735] ERROR {cps.server:1349} : (from ('::ffff:5.135.238.158', 38179, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x0f¯0×\x12&fÐ\x8b\x86ñª\x03&¨\x90\x815î\x1cº\x96²\x9c\x98öýÑ#\x19â\x93 ÈôL\x81ÛTª\x1e\x19êK±\x83³B\x17ÚÒFÛ\x97»¾ä*Cï@i#ÚK\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-09 20:13:35,344] ERROR {cps.server:1349} : (from ('::ffff:5.196.113.1', 50673, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03aº\t=\x97ö\x02àO3?Æi\x80ûÓ\x11÷äÝÑûC<\x1a&KмÃr\' :\x8b\x17úwqÓð¡M\x8f3\x92\x86\x91×\x9eS2û9©Ç\x1c\x92Þât\t"Ï£\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-09 20:13:35,615] ERROR {cps.server:1349} : (from ('::ffff:5.196.113.4', 50847, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x97_#uºyÆr:ðüá¥\x01è\xad>3Ë¢;\x90Ýÿr,6¹«Ä\x88Ó î1ûâÉj#\x9fÑÑC\x1fc¯!3éB¾ób\x92"ä\x03S@P<ÓCÌ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-09 20:21:06,331] ERROR {cps.server:1349} : (from ('::ffff:213.32.32.85', 40951, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x8bÛº)\x88©\x1f\x1fÂÏg\xa0\x9cßn\x83C\x9b¶\xa0Ãäï;ôä\x93Ñ0Ûr\x06 @\x94ó\x83Í\x02¬<\x9fn\x0chT:\x89òÐÇÊÔ\rO\x02/þ`jð&2¯ý\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-09 23:14:50,839] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.45', 57944, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03c\x19\x9aqþ;" Ïhxs6µ5áâ>\x8a\x95J\x7ff\x1aòJØVZ\x14±7 2>\x01Q¦n\x00M\x1aÁfÛ\x173d\x14£zY2*Yüuy³Ò°S7\x9a³\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-09 23:14:50,999] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.45', 57952, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x036Ð\x18\x89áG=2Iþ¼]\x8d\x8e\x8f>Ï\x87Ë\t@b\x15í\x8bDl\xad\x1d¬×\x06\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-10 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-11 04:00:00 UTC)" (scheduled at 2025-02-10 04:00:00+00:00) +[2025-02-10 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-11 04:00:00 UTC)" executed successfully +[2025-02-10 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-11 04:10:00 UTC)" (scheduled at 2025-02-10 04:10:00+00:00) +[2025-02-10 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-11 04:10:00 UTC)" executed successfully +[2025-02-10 11:02:50,304] ERROR {cps.server:1349} : (from ('::ffff:40.78.95.27', 56104, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-10 21:59:35,385] ERROR {cps.server:1349} : (from ('::ffff:87.120.127.108', 53552, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00á\x01\x00\x00Ý\x03\x03Ó=\x07ðti\x99¥èçn\x9eØî\x81\x9bª\x8c\x0b\x14Çò4\x83)S(ª¼\x108\x89 \x04±\x9dǶã\x89£\x97\x8d\x95x\x18\x8cÞtG\xa0\x1fÇ\x00ͱ\x18}Ë\x91Il\x99ÿ½\x00$\x13\x03\x13\x01\x13\x02À/À+À0À,̨̩À\tÀ\x13À\n' +[2025-02-10 21:59:38,514] ERROR {cps.server:1349} : (from ('::ffff:87.120.127.108', 53812, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00á\x01\x00\x00Ý\x03\x03ð&#\x8eÏ`\x9fíRs)h,+ßneÄ«\x92\x9au \x1e:SUgg\x08\\Ò 9\x0bòs\x028=´§T0ó: (from ('::ffff:198.235.24.147', 62024, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ðý\x9aÝ_JÁ\x14êÏUC\xa0É?R\x95èzã9#PFÛ\x91È«¢Áª© \x9cz×\x13·ÒéËyô¨b]Ý\x9f5Í«\x00xïÐ\x18L ÷5ì\xad\x18\x91G\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-11 00:17:16,435] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.147', 62026, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8fä\x16ë\x85×Á³î7CÅó¥\x18\x11ø\x16ä¯ð\x8eb&\x12ËöB@yôw\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-11 02:07:32,059] ERROR {cps.server:1349} : (from ('::ffff:185.147.125.16', 64044, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-02-11 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-12 04:00:00 UTC)" (scheduled at 2025-02-11 04:00:00+00:00) +[2025-02-11 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-12 04:00:00 UTC)" executed successfully +[2025-02-11 04:10:00,004] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-12 04:10:00 UTC)" (scheduled at 2025-02-11 04:10:00+00:00) +[2025-02-11 04:10:00,005] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-12 04:10:00 UTC)" executed successfully +[2025-02-11 04:38:22,786] ERROR {cps.server:1349} : (from ('::ffff:15.204.47.3', 35464, 0, 0)) Invalid HTTP method: '\r\n' +[2025-02-11 04:38:32,952] ERROR {cps.server:1349} : (from ('::ffff:15.204.47.3', 40890, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03X\x9c\x82\x98±[Ä\x04XN\xa0\n' +[2025-02-11 04:38:40,343] ERROR {cps.server:1349} : (from ('::ffff:15.204.47.3', 35516, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001' +[2025-02-11 05:38:02,827] ERROR {cps.server:1349} : (from ('::ffff:172.104.11.34', 5558, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n' +[2025-02-11 05:38:03,169] ERROR {cps.server:1349} : (from ('::ffff:172.104.11.34', 5568, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n' +[2025-02-11 08:24:54,938] ERROR {cps.server:1349} : (from ('::ffff:185.147.125.16', 63949, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-02-11 17:34:29,838] ERROR {cps.server:1349} : (from ('::ffff:165.154.164.142', 44034, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03(\x88y\x98+e¼\x07\x9fA0ô\x02®U\x9c¥/\x17\x84Æ]\x90ÉÏ\tÉÆW\x9a> :ª\x16\x00P¿\x8e\x80\x04Êúµç~ÓödVK\x0f¤ÑzªÈhZÆ7\x95\x8eö\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' +[2025-02-12 00:49:32,338] ERROR {cps.server:1349} : (from ('::ffff:52.249.38.230', 51290, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-12 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-13 04:00:00 UTC)" (scheduled at 2025-02-12 04:00:00+00:00) +[2025-02-12 04:00:00,018] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-13 04:00:00 UTC)" executed successfully +[2025-02-12 04:05:03,348] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.222', 59432, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03׸hO\x11\x1eY®1¯ªg,BÞ\x0fìh\x0e¡üº\x8cæ÷\x1d¤\x82¸\n' +[2025-02-12 04:05:03,660] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.222', 59436, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8d\x9d\x1b\x0eÓCnÒ»¹þPK0¤5äÙTÆ\x95\x12\x93Æ×\x12\x8a&öë$}\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8d\x9d\x1b\x0eÓCnÒ»¹þPK0¤5äÙTÆ\x95\x12\x93Æ×\x12\x8a&öë$}\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-12 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-13 04:10:00 UTC)" (scheduled at 2025-02-12 04:10:00+00:00) +[2025-02-12 04:10:00,003] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-13 04:10:00 UTC)" executed successfully +[2025-02-13 01:40:34,613] ERROR {cps.server:1349} : (from ('::ffff:149.202.132.196', 44921, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Æ\x89É9ý®\x0cx§[W¹ÒxéA\x02\x8dúI\x01¾\x12yúå¦(\x8d+pØ ¿= ^®O\x162\x01\x8b1-4m\x01¯åÐô\x81\x80.\x0c\x1b\x03\x08\x9a3¦B\x9f\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-13 01:47:09,826] ERROR {cps.server:1349} : (from ('::ffff:51.178.236.248', 45097, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÆæÕ4°\x8fz Ù\x164¬Ã½Ñ»Ç\rûe÷Êü\x87\x0fhì'\x1em\x82\x07 æx>ж\x17ó\x009: (from ('::ffff:51.178.236.246', 60031, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ò\n' +[2025-02-13 01:53:09,546] ERROR {cps.server:1349} : (from ('::ffff:79.137.7.75', 56523, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x07ÓÖ\x12\x1cð¡30í£d\x9c[\x82ø\x00ë\x13\x89rq+o£·|: (from ('::ffff:205.210.31.176', 62910, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Ë?_¸2PæÇ\x80\x07(Ä16\x81\x9f\t\x17Í!}oà\x9d°ÊÕ\x84Âã\x92m \x9b{V·\x84ØòÏñ]ë\x16ßÅ3°}\x0c¢|÷s}\x96\r\\Z]\x82Óüi\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-13 10:26:54,784] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.176', 62918, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¶÷(þ9óí\x82hÌ-\x8b2\x8dwÝçûÚß\x13øL\x19\x14Ë?\x19\x0eØå»\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¶÷(þ9óí\x82hÌ-\x8b2\x8dwÝçûÚß\x13øL\x19\x14Ë?\x19\x0eØå»\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-13 13:48:28,955] ERROR {cps.server:1349} : (from ('::ffff:5.101.0.66', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n' +[2025-02-13 16:26:57,642] ERROR {cps.server:1349} : (from ('::ffff:13.64.51.72', 49920, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-14 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-15 04:00:00 UTC)" (scheduled at 2025-02-14 04:00:00+00:00) +[2025-02-14 04:00:00,006] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-15 04:00:00 UTC)" executed successfully +[2025-02-14 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-15 04:10:00 UTC)" (scheduled at 2025-02-14 04:10:00+00:00) +[2025-02-14 04:10:00,002] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-15 04:10:00 UTC)" executed successfully +[2025-02-14 06:14:11,101] ERROR {cps.server:1349} : (from ('::ffff:172.105.128.11', 63532, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n' +[2025-02-14 06:14:13,121] ERROR {cps.server:1349} : (from ('::ffff:172.105.128.11', 63546, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n' +[2025-02-14 07:52:24,678] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.222', 64024, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03y´¦\x05`ÇP\x98s\x0f\x92þ}uά\x82\x8b\x83|\x91|c¥\x85hË\x87ùpbÍ f%Ã\x9dh×ÌO\x94M\x9dË]kªx\x98\x9fùÅÓïVH\x84+!\x1c³\x98\x18\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-14 07:52:25,035] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.222', 64032, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03DKÆ\x99DÁàJ¥8\x92$ú\x8f\tNÃK½©X¼\x06²oÇê½Öìt¶\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-14 23:34:44,725] ERROR {cps.server:1349} : (from ('::ffff:71.6.199.23', 42750, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03`ø\x15y\x8c\x13\x1aáûÂ]\x16\x9cÜõ\x19\x99»\x13ØÊK_¡'; path=')·à_?\x04\x81\x00\x00rÀ0À,À(À$À\x14À'; raw='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03`ø\x15y\x8c\x13\x1aáûÂ]\x16\x9cÜõ\x19\x99»\x13ØÊK_¡\t)·à_?\x04\x81\x00\x00rÀ0À,À(À$À\x14À\n' +[2025-02-15 01:57:43,711] ERROR {cps.server:1349} : (from ('::ffff:51.81.155.128', 52336, 0, 0)) Invalid HTTP method: '\r\n' +[2025-02-15 01:58:01,017] ERROR {cps.server:1349} : (from ('::ffff:51.81.155.128', 52436, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001' +[2025-02-15 02:35:58,812] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.176', 58216, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8ct\x08B*M\\Ø\x1eÔ3\x9e\x9b\x0f\x1dk1\x8eËWÐFr \x9c°óh\x18~\x9aº öø\x86Ð}\x93mÚæ+\x8b;¡^\tj\x8c´\x1dk¢kÈ\x86P«%r\x96qj\x19\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-15 02:35:59,170] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.176', 58224, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ó\x15\x06{\x9f\x87*gýÞ9ö\x94\x8ar¹\x9eb\x1cú\x0e¦ÓR_\r£F\x80Üt\x7f\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-15 02:49:06,191] ERROR {cps.server:1349} : (from ('::ffff:18.188.75.250', 33174, 0, 0)) Invalid http version: "\x16\x03\x01\x00{\x01\x00\x00w\x03\x03ì\x88\x14EäÛ\x05üæ\x8c\x1c\x03¯S®¤i¯\x91'´\\ö«dó\x14E: (from ('::ffff:18.188.75.250', 57176, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x17:u-C\n' +[2025-02-15 02:49:27,969] ERROR {cps.server:1349} : (from ('::ffff:18.188.75.250', 57804, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n' +[2025-02-15 02:50:55,589] ERROR {cps.server:1349} : (from ('::ffff:18.188.75.250', 39082, 0, 0)) Invalid HTTP method: '\n' +[2025-02-15 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-16 04:00:00 UTC)" (scheduled at 2025-02-15 04:00:00+00:00) +[2025-02-15 04:00:00,012] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-16 04:00:00 UTC)" executed successfully +[2025-02-15 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-16 04:10:00 UTC)" (scheduled at 2025-02-15 04:10:00+00:00) +[2025-02-15 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-16 04:10:00 UTC)" executed successfully +[2025-02-15 09:39:27,607] ERROR {cps.server:1349} : (from ('::ffff:8.219.8.175', 40838, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé: (from ('::ffff:71.6.134.234', 37290, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8f\x89ÒÂ\x86:ÒkÞsd\x11z½¾\x10÷ÅîëÒö\x98O°Õ½$ Í9¤ \xa0è\x90iuø0þ\\¼@\x1c\x0bî\x94LÀÑ\x07VD«+\x89O:\x0b5(ËHe\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n' +[2025-02-15 11:29:58,532] ERROR {cps.server:1349} : (from ('::ffff:172.168.152.7', 34630, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-16 02:16:25,300] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.246', 59124, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03]Eú\x90\x99\x81\x0fÑËP\x87\x1eõ2¾(«\x89Nb/\x16\x9bÖA\x9aÀ\x11EÏæL \x80nTÓLs«\x1a\n' +[2025-02-16 02:16:25,659] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.246', 59136, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ª%\x93r\x01ðÞÂúª÷>ùɲ\x9a\x9b\x19yBX\x1b\x8d\x9e\x97EMxp\x18\x12\x9d\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ª%\x93r\x01ðÞÂúª÷>ùɲ\x9a\x9b\x19yBX\x1b\x8d\x9e\x97EMxp\x18\x12\x9d\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-16 02:31:28,422] ERROR {cps.server:1349} : (from ('::ffff:196.251.89.107', 46380, 0, 0)) Invalid HTTP method: '\x04\x01\x01»Ô/ú\x0e\x00' +[2025-02-16 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-17 04:00:00 UTC)" (scheduled at 2025-02-16 04:00:00+00:00) +[2025-02-16 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-17 04:00:00 UTC)" executed successfully +[2025-02-16 04:10:00,002] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-17 04:10:00 UTC)" (scheduled at 2025-02-16 04:10:00+00:00) +[2025-02-16 04:10:00,003] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-17 04:10:00 UTC)" executed successfully +[2025-02-16 08:09:44,214] ERROR {cps.server:1349} : (from ('::ffff:172.202.250.243', 50190, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-16 12:24:14,440] ERROR {cps.server:1349} : (from ('::ffff:196.251.89.107', 47254, 0, 0)) Invalid HTTP method: '\x05\x01\x00' +[2025-02-16 18:52:22,683] ERROR {cps.server:1349} : (from ('::ffff:137.74.239.150', 40063, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\tè\xa0`\x12\x15CrÝ Ø½Ú6f\x88õG/\x8bN\x7f/í5îï\x8b'Þ2x æ2Ýÿ\x08\x84\x10rÓ\x1f\x08~ö\x8aÊs\x13Û'32\x85.\x1dÜâ\x811\x10\x9cÞ\x08\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-02-16 18:59:06,968] ERROR {cps.server:1349} : (from ('::ffff:79.137.7.68', 45715, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x06ÆÜð\x10m\x9b«ÏâÈq\xa0-\x7f~Ã\x9dÙ\x80\x12ü\x1d!k\\\x02\x81\x19ÞÑs ã\n' +[2025-02-16 18:59:08,522] ERROR {cps.server:1349} : (from ('::ffff:79.137.7.77', 56701, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03=2\x12ë\x18\x1aÓݼBr|¸?z\x1d-¢ñó2;¯ñó'WIcc!¿ =\x83/ßäÝ\x8c:ôF\x8b½ò\x1a±?õß³ð¢'Í3ÈÖ¶2¹ºG$\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-02-16 19:05:33,163] ERROR {cps.server:1349} : (from ('::ffff:51.178.236.249', 57899, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03òpàÔ\x87\x901\x10Næ\x06t\x177J$ëjRû/\x03"\x10\x8d=î\x7fù ó 2=Ì\x19=\'8\\zò\x0büj0Ã-Æû½\x7f\x9d\x13\x17Å\x1fÚÝ\x1dÃÛÛ\t\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-17 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-18 04:00:00 UTC)" (scheduled at 2025-02-17 04:00:00+00:00) +[2025-02-17 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-18 04:00:00 UTC)" executed successfully +[2025-02-17 04:10:00,002] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-18 04:10:00 UTC)" (scheduled at 2025-02-17 04:10:00+00:00) +[2025-02-17 04:10:00,003] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-18 04:10:00 UTC)" executed successfully +[2025-02-17 06:48:08,511] ERROR {cps.server:1349} : (from ('::ffff:118.26.104.179', 58212, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03â\x94\x8dÍw\x96\x1fÝÒö¡\x932ò\x08ÍGs\x11>ëD\x19\x01\x7fQE9-Û\x8aí \x1b/ê-\x8fz¬u\x13\x97\x16¬@;¨\x0b3P\x96vÊ$\x1a\x0fÌ\x8fÒ\x03bý\x8cÖ\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-17 06:48:08,904] ERROR {cps.server:1349} : (from ('::ffff:118.26.104.179', 58254, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n' +[2025-02-17 08:13:20,217] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.81', 60490, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x959ò¶\x8dñ9m\x14ÅkípîT¬¨\x8bó]\x1b\x13\x9b\x96M\x93FàÝÔ\x9cÊ \x18\x0c\x98æx,>S\x16$\x81\x89Ù\x99\x17,ùÝê\x04\t\x86YM\x93Ù¹xÞ\x04ãß\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-17 08:13:20,373] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.81', 60496, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x00\x80A\x87\x93Àù+Æ\x83Û\x98\x8eªÌò9Ñ\n' +[2025-02-18 00:01:49,415] ERROR {cps.server:1349} : (from ('::ffff:185.142.236.34', 43446, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03r`¾Ô¬W\x8eìt,'; path="¦\x10-à\x9bÚ'0e®ÕÖ~\x9eÔ\x06Ã"; raw="\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03r`¾Ô¬W\x8eìt,\x1d¦\x10-à\x9bÚ'0e®ÕÖ~\x9eÔ\x06Ã\n" +[2025-02-18 02:26:45,593] ERROR {cps.server:1349} : (from ('::ffff:52.228.167.157', 51818, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-18 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-19 04:00:00 UTC)" (scheduled at 2025-02-18 04:00:00+00:00) +[2025-02-18 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-19 04:00:00 UTC)" executed successfully +[2025-02-18 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-19 04:10:00 UTC)" (scheduled at 2025-02-18 04:10:00+00:00) +[2025-02-18 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-19 04:10:00 UTC)" executed successfully +[2025-02-18 10:24:24,310] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.15', 57558, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x17MR»\x14CuTR>ê\x94d\x16\x9dó\x05ê\x92¹\x83ÁC\x87ØÚ¢\x9fb¯\x82§ f}íd\x00\x8eò\x075¹é\x1fV\x98¯ø\x95T;ñÆkaBáü\x94\x85]×-B\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-18 10:24:24,608] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.15', 57570, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03óõ<\x8c´\x90¬®Àú\x8fl\x06tÜ÷\x89n\x1a\x98ð2\x12@\x8fÂ^"õÆ\x0bà\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2025-02-18 20:31:17,265] ERROR {cps.server:1349} : (from ('::ffff:138.197.221.128', 57728, 0, 0)) Invalid HTTP method: '\r\n' +[2025-02-19 04:00:00,008] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-20 04:00:00 UTC)" (scheduled at 2025-02-19 04:00:00+00:00) +[2025-02-19 04:00:00,010] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-20 04:00:00 UTC)" executed successfully +[2025-02-19 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-20 04:10:00 UTC)" (scheduled at 2025-02-19 04:10:00+00:00) +[2025-02-19 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-20 04:10:00 UTC)" executed successfully +[2025-02-19 07:51:31,523] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.182', 64042, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Ð?G|\x89A`·}Ô\x8a\x86¡ïÎnw¤ZgÛû,\x1dè#ÇqPN\x82\xad \x02p\x90s ÒÄâîªF½XV\x19Z7ìI¿\x1d«J\\\x12XºKÎM5û\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-19 07:51:31,836] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.182', 64052, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x034×)L+m\x8c\x13\x95«â;ýÖ\x0b\x8aË\r\x85s\x86LÈD\r\x87ûn(zä¨\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-19 11:34:36,302] ERROR {cps.server:1349} : (from ('::ffff:182.75.158.46', 61001, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x033h\x95¿'; path='.ÑõyQ*\x04ï\x9fypø»\x80j_ðÂ'; raw='\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x033h\x95¿\x1e.ÑõyQ*\x04ï\x9fypø»\x80j_ðÂ\n' +[2025-02-19 22:24:58,502] ERROR {cps.server:1349} : (from ('::ffff:45.156.130.46', 35270, 0, 0)) Invalid http version: '\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03eoªqN8\x84å@×GdÁ\x1dñrh\x05áu\x9bã¾úùj¨\x03\x81Å\x02\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n' +[2025-02-20 01:18:49,346] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.7', 58217, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03MDó\x93\x1f¤!\x8bl^8³\x8aÏMÑü\x9b. Ç1â\x03rs.\x8câ#ðñ 29-w;_½\x97'\x12#\x90\x10{Í$ïxa×\x13¬c\x13Û¿jÄ\th8{\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-02-20 01:25:07,366] ERROR {cps.server:1349} : (from ('::ffff:149.202.132.207', 41765, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03?½¹\x8e1m¶\x9bº0)H3?âÕ|\xa0a\x19èn»!\x14?\x1bÞø\x9dM" á\x82¤\x88\x03Ú3Â\x0e)(ÎnÊ\x1fýãÍ\x9bþï\x9b|\x02Ç2»«¶Þ$0\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-20 01:25:09,241] ERROR {cps.server:1349} : (from ('::ffff:149.202.132.204', 55175, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03×/¥¡ì=@\x81ö7N;¾Ð³q}Á|9Ý Hñ%V\x0e®4Ó\x81ª -çé¨:¬¯\x1d\x85\x94Â\x10r\x12}3OÙÍ>/\x1b¿=\x82«ï\x8dCÖ2¯\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-20 01:31:10,568] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.29', 38011, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Öû\x82,³\xad,Áâ:jÞ&\x0fº¨22I\x1d\x0f»\x10M}+Ù\x0b/«sZ ¯£\x912\x12!\x8a\x91\x01æ*\x8e\x07-?8Ý\x99³bæ¢@\x9fb2\x06ª¢\x08 ª\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-20 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-21 04:00:00 UTC)" (scheduled at 2025-02-20 04:00:00+00:00) +[2025-02-20 04:00:00,006] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-21 04:00:00 UTC)" executed successfully +[2025-02-20 04:10:00,003] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-21 04:10:00 UTC)" (scheduled at 2025-02-20 04:10:00+00:00) +[2025-02-20 04:10:00,004] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-21 04:10:00 UTC)" executed successfully +[2025-02-20 08:04:09,592] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.203', 63162, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x00\x12;\x81\xa0xâߣµ2&ù!é}î\x102\x18Î\x96\x17í\x01Å(\x16Ça'\x9b sS¢o>\x1c0\x7f°é\x90¦\x05\x82ÕýĪo®MÆFR£õÍëº\x00à\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-02-20 08:04:09,953] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.203', 63166, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03LÉoU~·\x98\x98\x90¡\x855\\ãÿZ_r¢wÅ£\x9bsʬ3\x0cåâE)\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-20 10:53:07,676] ERROR {cps.server:1349} : (from ('::ffff:80.82.77.202', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n' +[2025-02-20 13:12:52,107] ERROR {cps.server:1349} : (from ('::ffff:172.245.40.162', 60948, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03üÖm¶4ä\x89T/\x93Ö§Àß\x98ýÛ7\x0c×1jVâ;\x85\x1c\x92ë9Z\x97 ï3\x15x[/¦\x01IºU\x9b\x96É"\x18kö\x98õÛ\x03Í^ZÎpªÈ\x0bT^\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-20 16:18:54,239] ERROR {cps.server:1349} : (from ('::ffff:40.78.88.229', 57182, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-20 16:29:47,375] ERROR {cps.server:1349} : (from ('::ffff:123.58.207.155', 56124, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03\x9c\tlW¡\r¨\x8bÀw\x99\x1f\x99\x8cÔ¤vï\x00O\x07;(»Ù&¿\x99W\x04\x91\x85 \n' +[2025-02-20 23:58:21,859] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.72', 62384, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ï\tð\x9dg?#|h$OYuä.ø¦¹S¢º\x88zh\x96±ôÝP\x1câ\x10 ç\x8c\x8eÇ¿\x19\x9a²è̦\x7fY]Ã:¦ìþHnÇê¾\x15Ã2L\x07ë\r#\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-20 23:58:22,017] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.72', 62398, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8cë\x1cè0½\x87\x91/\x8aÔë¾V[\\ùjl\x81M%y\x1a\x80õèºì]¥æ\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-21 01:29:27,259] ERROR {cps.server:1349} : (from ('::ffff:101.198.0.157', 44867, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01=\x01\x00\x019\x03\x03\x85B@Îa\x1fMG\x10C¹ì\x91\x99AGÄÆp:¢\x84#i·2ÑÆ=\x87î\x9e \x0eS¯5B\x06ØNݪúÏÖú\x15(ôï\x10»S8Õ\x16v]\x1b:\x9b\x86àp\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' +[2025-02-21 02:59:55,360] ERROR {cps.server:1349} : (from ('::ffff:101.198.0.180', 32240, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01=\x01\x00\x019\x03\x03J=WJ¸¸\x96à\x9cÄ«\x8f¢øÉ«Ð!r\tÁ\x83~B½èné=\rÎd °\x1c\x07`´\x0b²Ã6Ë8T\x83ï\x87I\x00c\x1dý«ÀÏ A\rËKÛj)\x1b\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' +[2025-02-21 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-22 04:00:00 UTC)" (scheduled at 2025-02-21 04:00:00+00:00) +[2025-02-21 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-22 04:00:00 UTC)" executed successfully +[2025-02-21 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-22 04:10:00 UTC)" (scheduled at 2025-02-21 04:10:00+00:00) +[2025-02-21 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-22 04:10:00 UTC)" executed successfully +[2025-02-21 16:35:13,690] ERROR {cps.server:1349} : (from ('::ffff:5.101.0.66', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n' +[2025-02-21 21:26:49,506] ERROR {cps.server:1349} : (from ('::ffff:194.164.107.6', 49046, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Wçp¹ôT÷\x07Ó¢ïλ\x04gÊ»\x1bVȪ \x88\x84\x1fßõÒ`¾:¶ ÿè\x9c\x9d\x01¨\x07ê\x8eJzwåÔ(&\x9a\x8aNØØFh\x00\x9d`c\x92A6\x9eú\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n' +[2025-02-22 02:30:40,854] ERROR {cps.server:1349} : (from ('::ffff:71.6.134.230', 47500, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03#æÃ\x0ep\x016NÏChçOÎÂ\xa0\x01MÎj`\x9b\x80dÖ\x96\x8b\x8c\x05æ\x92³ UÄ]\x17nARDï)Õ\x82\x83)\x06s±Wp\x82Fk\\<³|\x95áê\x10%B\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n' +[2025-02-22 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-23 04:00:00 UTC)" (scheduled at 2025-02-22 04:00:00+00:00) +[2025-02-22 04:00:00,000] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-23 04:00:00 UTC)" executed successfully +[2025-02-22 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-23 04:10:00 UTC)" (scheduled at 2025-02-22 04:10:00+00:00) +[2025-02-22 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-23 04:10:00 UTC)" executed successfully +[2025-02-22 05:22:14,542] ERROR {cps.server:1349} : (from ('::ffff:130.204.252.234', 35493, 0, 0)) Invalid HTTP method: '\x16\x03\x00\x02\x00\x01\x00\x01ü\x03\x03úØ7¦\x0bjð÷*]\x11\x15\x1b\x10\x12\x10\x1fà=\x7fX\x17\x8a\x9aE[ø°\x8aØ5t A¨õòpÂFS\r+\x0f\x97¹Æ¿\x99[\x9dr\x82»9!1,\x99\x95%ì%ÕK\x00"ºº\x13\x01\x13\x02\x13\x03À+À/À,À0̨̩À\x13À\x14\x00\x9c\x00\x9d\x00/\x005\x00\n' +[2025-02-22 09:14:18,832] ERROR {cps.server:1349} : (from ('::ffff:172.245.40.162', 33224, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03\x1d\x15\x14võàé\x04%ÂÚ\x0câ\x96\x1aÆô¾\x8dIÒQSX>\x80\x19ó>®ä\xa0 O|¾F(+\x982ý¼ôÊ·^^{\x8d`Ï\x15â=m2ÿ@\x88ø\x99áaä\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-22 10:33:56,224] ERROR {cps.server:1349} : (from ('::ffff:172.206.147.171', 41528, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-22 10:45:41,981] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.239', 63210, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8dÜ?×¶H0È\x98ñü'; path='<Ô}'; raw='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8dÜ?×¶H0È\x98ñü\xa0<Ô}\n' +[2025-02-22 10:45:42,293] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.239', 63216, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x91àò\x17'÷¹4Æ\x89e\x17{b?ñ\x04/ªa\x95Æë{Xìÿ=gÁ\x03Ô\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x91àò\x17'÷¹4Æ\x89e\x17{b?ñ\x04/ªa\x95Æë{Xìÿ=gÁ\x03Ô\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-22 12:34:17,829] ERROR {cps.server:1349} : (from ('::ffff:145.239.154.82', 37570, 0, 0)) Invalid http version: '\x16\x03\x00\x00i\x01\x00\x00e\x03\x03U\x1c§ärandom1random2random3random4\x00\x00\x0c\x00/\x00\n' +[2025-02-22 19:01:58,682] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.249', 63658, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03·\x17!\x06+<\x1dçd\x19Ó¯;d\x03\x94*\x8dã\x82þ[õ\x1cà*Qa\x10d±¥ ÿ\x11[\x07Zµ\x88ÒÏ\x8a\x90}ë\x84mËñ\x87\x11íÇÆ@4\x83\x96Â,,øI\x10\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-22 19:01:59,043] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.249', 63668, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Ú´¯\x1bp\x15\x19.\x9c^¾\x18Â\x17ÀÕÈËlq¸b\xa0&\x0bþ\x8cOís\rä\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-22 22:40:04,464] ERROR {cps.server:1349} : (from ('::ffff:185.165.191.27', 36886, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03Lta¸ô\x0f\x1e´-\rs¸¶oçßnuÄ\x0eä{r³\x13:\x85^{\x87H\x84\x00\x00rÀ0À,À(À$À\x14À\n' +[2025-02-23 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-24 04:00:00 UTC)" (scheduled at 2025-02-23 04:00:00+00:00) +[2025-02-23 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-24 04:00:00 UTC)" executed successfully +[2025-02-23 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-24 04:10:00 UTC)" (scheduled at 2025-02-23 04:10:00+00:00) +[2025-02-23 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-24 04:10:00 UTC)" executed successfully +[2025-02-23 18:49:33,008] ERROR {cps.server:1349} : (from ('::ffff:149.202.132.204', 54619, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x81ÎC®¡m²ò\x7f\x13ø2\n' +[2025-02-23 18:57:05,518] ERROR {cps.server:1349} : (from ('::ffff:137.74.181.244', 53093, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03?\xa0Î\x122AÊú \x12m#>¢»]\x97«l\x8cóÌBßyDª*ëûôÜ 3iAk©\x97\x7f{¢ö\x07\x8c\x13\t3£ëþ\n' +[2025-02-23 18:57:07,192] ERROR {cps.server:1349} : (from ('::ffff:137.74.181.254', 46225, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03«\x99Ö\x7fpæ¯\x89Ôá8xË!sÝz\x00\xa0Â3\x9fñl,ýNA\xa0\x89ó\x92 A\x1dáúí6;Göï\x1d,\x13\x14\x13Ý\x91.O\xad«\x02ï\x00\x93§2\x87{Ú9-\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-23 19:03:08,294] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.97', 36679, 0, 0)) Invalid http version: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Û+\xad\x82ñ\x9d\xa0\r(ª*;À\x9fd\x10\x19¿-ï#²\x91¹",(\x04!\x12\x01N \x81\\\x12,\x9f·î×Ê<\x01ðìC\x92\n' +[2025-02-24 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-25 04:00:00 UTC)" (scheduled at 2025-02-24 04:00:00+00:00) +[2025-02-24 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-25 04:00:00 UTC)" executed successfully +[2025-02-24 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-25 04:10:00 UTC)" (scheduled at 2025-02-24 04:10:00+00:00) +[2025-02-24 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-25 04:10:00 UTC)" executed successfully +[2025-02-24 04:25:49,562] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.81', 60628, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03F\x1cF·\x92\x10\x89]E\x81Ȩe-Å,,¶r\x12|r\x98\xa0X*pz\x0bo%¾ ½&\x06\x07nj\t)\x93ÆJ\x8b\x11½\\i.C¥'U«6ÝC7o\xad¸î\x89Ø\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-02-24 04:25:49,730] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.81', 60634, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03l122ñ{º¾Él¿èAó\x06Lí\x90EïÌ<\x8e;Þ£°ÃÊ\x0c[\x18\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-24 05:15:34,567] ERROR {cps.server:1349} : (from ('::ffff:40.85.153.102', 52870, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-24 08:58:42,762] ERROR {cps.server:1349} : (from ('::ffff:167.71.44.3', 57546, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03Æ\x0e~ÜPî\x11f{¼Ä\x90]FÉÑ`´*rU=F\x12ø³\x18\x17\x8dë½h ¶L\x90vJÍ*$\x86lb\x17¸{\x921C\x7foÂfì:g:³p\x15.ÓÁç\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-24 17:12:58,422] ERROR {cps.server:1349} : (from ('::ffff:172.245.40.162', 60036, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03'; path='÷\x93\x10\x1a¨åüý_$\x94ÕÈÏ£p'; raw='\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03\t÷\x93\x10\x1a¨åüý_$\x94ÕÈÏ£p\n' +[2025-02-24 17:13:00,137] ERROR {cps.server:1349} : (from ('::ffff:172.245.40.162', 60044, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03\x10\x10\x83þ-\x14£åä¹\x02l+ºG\x0f\x8a\xa0;t\x9aZôBJíÝþ^DÆ¡ øYA\x16a\x15¯\x95òB\x97¢ÑÉE\n' +[2025-02-25 01:59:44,567] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.55', 64390, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03°1ÿ^½Ü\x91,&±3òa\x1e:\x8eC\x0f¥÷ÁZ\x1b\x8fO8:²\x7fbh\x87 \x08-\x9d#\x90\x04wc\x99B\x05é\x1b\x95£Ká%´\x98*\x00¨\x9bÏû\t+6RßË\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-25 01:59:44,837] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.55', 64402, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03yO¯/¨NpF«w\x06W\n' +[2025-02-25 03:04:40,575] ERROR {cps.server:1349} : (from ('::ffff:172.202.252.39', 53626, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-25 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-26 04:00:00 UTC)" (scheduled at 2025-02-25 04:00:00+00:00) +[2025-02-25 04:00:00,010] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-26 04:00:00 UTC)" executed successfully +[2025-02-25 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-26 04:10:00 UTC)" (scheduled at 2025-02-25 04:10:00+00:00) +[2025-02-25 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-26 04:10:00 UTC)" executed successfully +[2025-02-25 05:00:38,038] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 54760, 0, 0)) Invalid HTTP method: '\r\n' +[2025-02-25 05:00:42,596] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 55428, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03\x195Ê7S<`µ %ä#\x1dÅJ¶w¬\x01æ\x15-UË_\x84½ì±@£C \x8cÂ+\x02ö²isç*È\x1c¼ãÄ\x15\x18â\x95]õ\x06u\x9buNÞ\x808`=\x06\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À'\x00g\x00@ÀrÀv\x00¾\x00½À\n" +[2025-02-25 05:00:44,632] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 55656, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03A¬Ìæ\x01\x98ã`N\x10kO\x9bôÃö\x17\x0c··i\x01AI\x8c\x02M\x83T¸2¯ C½C¥vJ¤6Cá&\x15º(4×ñÄBï'ØI¹±Q\x10µP\x90Ö\x1d\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À'\x00g\x00@ÀrÀv\x00¾\x00½À\n" +[2025-02-25 05:00:48,535] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 55776, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03å.¶T¯ÿæW\x96Y\x9a)\n' +[2025-02-25 05:00:48,584] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 55778, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03ÒCV\x12Ä\x8fµx\x88\x9c´#f\x16\x15\x11\x1djë[Ô/ï*ïQ\x02LÛH\x00ê ßâä*y@-\x90Þj@0\x81Ò_Õ÷CD\x1f\x92×"ø\x1981áaÂ\x06R\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À\'\x00g\x00@ÀrÀv\x00¾\x00½À\n' +[2025-02-25 05:00:49,636] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 54868, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001' +[2025-02-26 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-27 04:00:00 UTC)" (scheduled at 2025-02-26 04:00:00+00:00) +[2025-02-26 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-27 04:00:00 UTC)" executed successfully +[2025-02-26 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-27 04:10:00 UTC)" (scheduled at 2025-02-26 04:10:00+00:00) +[2025-02-26 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-27 04:10:00 UTC)" executed successfully +[2025-02-26 08:25:53,099] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.87', 62866, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x02E9笪:P\x8cÆ<3íCD\x850q5±\x13\x0cm\x85o\x8d«©³ÞÆ\x86 BZ\x1bN\x9f\x9d\x85ëI[å\x92\x8e?\x03<(hn\x1eÒ\n' +[2025-02-26 08:25:53,258] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.87', 62870, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03C\x08Sþô"\x16\x93²¢v\x11\x84Q»©u^\x04\'BK\x9d3Õ\x92\x9eP\x00%;Q\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À'; path='À(À$À\x14À'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03C\x08Sþô"\x16\x93²¢v\x11\x84Q»©u^\x04\'BK\x9d3Õ\x92\x9eP\x00%;Q\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2025-02-26 20:30:27,963] ERROR {cps.server:1349} : (from ('::ffff:48.216.197.96', 39982, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-27 01:13:36,724] ERROR {cps.server:1349} : (from ('::ffff:137.74.181.249', 54535, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03¬8¶6Ƭ\x97\x1f\x86¯\x07$\x14c\x17?t4·\x19"(Nè;Á\x91Û;\x81cñ \x93\t°ýò\x8b<\x94\x993!î\x92÷ù\x05\xa0=Kñ\x1c\xadøÓ\x94ë3\x1f\x98\x90ÏÝ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-27 01:20:08,659] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.20', 51927, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÒÝó\x9f\x84\x0cÏö\x1dÐCnR\x112aNùññ\x88L¾Ùç§<\x81\x13ñzo Oû?éÿÔi2Ò¢½È.TH\x1b\x8a\x00\x91CÒðG1\x9fÝä¸vãy\x82\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-27 01:20:08,858] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.23', 55295, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÙQ\x14\x99\x17\x9e\x0b¤Ò¾\x1dB\x1fóÔa\x8e\x1aÀ\x10\x1aè\x8c\x19Oq=Ú8à,ä ¸aàù\x13®Äp5Á¤\x01\x16\x98e¨b\x01\x13\x9fÃÛ×ò\x12ÜÇã\x8d}í:\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-02-27 01:27:09,527] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.10', 60885, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ác\x13Nÿ3Ø3ò\x93G8ó±û|\x10²9æiÿ\x10Ï\x12:!¡rßÖh \x1fò\x06\x9e@ê×Ò\xadÏ\x1d/ñ\r\x16>\n' +[2025-02-27 04:00:00,002] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-28 04:00:00 UTC)" (scheduled at 2025-02-27 04:00:00+00:00) +[2025-02-27 04:00:00,006] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-28 04:00:00 UTC)" executed successfully +[2025-02-27 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-28 04:10:00 UTC)" (scheduled at 2025-02-27 04:10:00+00:00) +[2025-02-27 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-28 04:10:00 UTC)" executed successfully +[2025-02-27 04:25:08,703] ERROR {cps.server:1349} : (from ('::ffff:180.149.125.163', 60993, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03G\x8b\x95¹øà\x04\x05]±2\x7fx¡ \x15¼â=¶ï\r\xa0\x12V\x0b©\x7f\xadÂõ\x84\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-02-27 06:22:42,386] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.18', 58900, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03³Ô\x02³ù3\x84ÖÄ\xa0¥\x9b\x84àJQ\x80bcý\x10ÿ\x9c¶\x89@¢U}S\x19^ Óßâxu\x08h\x7fá\rÔ\x98\x94\x0fl\x85\x84v}¢÷[\\;\x0bûß!®\x9e\tÕ\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-27 06:22:42,554] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.18', 58914, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¼Ê\x7ffv_\x88©3\x0eZéÀ¥5'; path='u\x98¸\x9d=\x81'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¼Ê\x7ffv_\x88©3\x0eZéÀ¥5\x0cu\x98¸\x9d=\x81\n' +[2025-02-27 16:42:02,539] ERROR {cps.server:1349} : (from ('::ffff:4.151.220.102', 52266, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-27 18:28:06,754] ERROR {cps.server:1349} : (from ('::ffff:45.142.193.19', 64640, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-02-27 21:14:06,092] ERROR {cps.server:1349} : (from ('::ffff:45.142.193.19', 65179, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-02-27 22:21:32,760] ERROR {cps.server:1349} : (from ('::ffff:80.82.77.202', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n' +[2025-02-28 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-01 04:00:00 UTC)" (scheduled at 2025-02-28 04:00:00+00:00) +[2025-02-28 04:00:00,010] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-01 04:00:00 UTC)" executed successfully +[2025-02-28 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-01 04:10:00 UTC)" (scheduled at 2025-02-28 04:10:00+00:00) +[2025-02-28 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-01 04:10:00 UTC)" executed successfully +[2025-02-28 09:39:19,958] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.238', 63252, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x18u\x99#¤ß: (from ('::ffff:205.210.31.238', 63266, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ñ`íÉ\x8dv,Wó\x97}õÆßr\x8fd\x85\x85}ÎÕW\x08ú?J\x16\x19¡\x03Ò\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-28 11:20:14,787] ERROR {cps.server:1349} : (from ('::ffff:194.164.107.6', 45874, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x03\x9b:\x89iòyª\x80:ùÅ0* \x90æºÀìÁpÑ1xv\x99%\x9cv\x8d: I\x1fÑ\x15.3\x9c¨N\\\x8fKÙ6+Ï%O\xadÆ5ì\x00Yã\x91n{\x9dÕ¸û\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n' +[2025-02-28 14:08:09,696] ERROR {cps.server:1349} : (from ('::ffff:4.246.246.248', 42952, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-28 15:05:05,240] ERROR {cps.server:1349} : (from ('::ffff:3.22.27.43', 47996, 0, 0)) Invalid HTTP method: '\n' +[2025-02-28 15:10:45,506] ERROR {cps.server:1349} : (from ('::ffff:3.22.27.43', 36614, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03/ðFGPQØ*V\x95ý\x0eMÎ\x8cõ\x1fíi´ë\x0cÁ$d\x15ÜäEá\x8e~\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-02-28 15:11:50,379] ERROR {cps.server:1349} : (from ('::ffff:3.22.27.43', 36348, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n' +[2025-02-28 15:14:17,910] ERROR {cps.server:1349} : (from ('::ffff:3.22.27.43', 37446, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x0e\x90HQÐëªØ\x89¦H i:¦|ÐL\x07b²d);á£]PKô¬\x1a\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-02-28 15:35:40,651] ERROR {cps.server:1349} : (from ('::ffff:3.12.36.233', 58854, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03K*SÑ\n' +[2025-02-28 15:35:41,503] ERROR {cps.server:1349} : (from ('::ffff:3.12.36.233', 58858, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03§^¨ß\x16{il/ã\rÆö@;7\x11\x9cµ\x97î´%Ãf\x9b`\x89-ðjá\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-02-28 15:36:18,695] ERROR {cps.server:1349} : (from ('::ffff:3.12.36.233', 52382, 0, 0)) Invalid HTTP method: '\n' +[2025-02-28 21:04:29,658] ERROR {cps.server:1349} : (from ('::ffff:217.196.98.18', 51866, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Ý2vÛeø«¤6\x8d·\x12'\x03áI¾\x94U\x11¿YУë]/\x80×\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À'À\n" +[2025-02-28 21:04:29,768] ERROR {cps.server:1349} : (from ('::ffff:217.196.98.18', 51870, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Ýã&Nô\x1aÏô¡\x9f"XÌ\x12j\x9fê¬\x17)fvÊx}dä\x07]\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À\'À\n' +[2025-02-28 21:04:29,874] ERROR {cps.server:1349} : (from ('::ffff:217.196.98.18', 51874, 0, 0)) Invalid http version: "\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Ýð¿íGàs\x8cÅco\x88\x1c®èè\xadz?¯Ãwb¢Ò\x02ñh\x1e\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À'À\n" +[2025-02-28 21:04:29,980] ERROR {cps.server:1349} : (from ('::ffff:217.196.98.18', 51879, 0, 0)) Invalid http version: '\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Ýò\x94h+"/n!êõf´¦áÓd=\rĸ\x17\x7f\x14\x1e+2²ý\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À\'À\n' +[2025-02-28 21:04:30,093] ERROR {cps.server:1349} : (from ('::ffff:217.196.98.18', 51883, 0, 0)) Invalid http version: "\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Þæ\x901¶6\x18\x85¢Wì\x07\x1a¸jP2§\x90\x88²SÔ\x1fõNÔæî\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À'À\n" +[2025-02-28 21:04:30,203] ERROR {cps.server:1349} : (from ('::ffff:217.196.98.18', 51886, 0, 0)) Invalid http version: "\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Þ¹\x874(\x97d\x0f\x96\x8d\x1c½R~í(ý^\x0f×B\xa0alÜlf\x9d*\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À'À\n" +[2025-02-28 21:04:30,303] ERROR {cps.server:1349} : (from ('::ffff:217.196.98.18', 51889, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Þ4\n' +[2025-02-28 21:28:09,041] ERROR {cps.server:1349} : (from ('::ffff:172.245.241.123', 49692, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03y\x82\x9aóç\x8a\x92vgËE\x8e1ïG\x8e\x1añF\x82Êü±\x89N\x86\x1b¼\x85\x84eÊ û7eèñqÎrv¹¯ÈVÝ\x1b\x02ûô\x1d\x0cØþø\x14¯¦¾)ýþ?5\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-01 00:08:18,149] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.204', 58762, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x95Å\xad\x9b²\x1e·ß\x98Bý\x84¨íªO¶7µT«vF}Ü=0dåèÚX {r:\x96\x92ÿ[\x17ÏyÉõîâý\x98 ,§q\x99²Ë»ðä\x01Òªê9Î\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-01 00:08:18,309] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.204', 58772, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03IêÍÅî\x9d\x14\x04zÁÇ\x98u\x18\x91Í4\x0c\r\x9dk2\x87r(uÉ2KZ½§\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-01 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-02 04:00:00 UTC)" (scheduled at 2025-03-01 04:00:00+00:00) +[2025-03-01 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-02 04:00:00 UTC)" executed successfully +[2025-03-01 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-02 04:10:00 UTC)" (scheduled at 2025-03-01 04:10:00+00:00) +[2025-03-01 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-02 04:10:00 UTC)" executed successfully +[2025-03-01 16:45:20,907] ERROR {cps.server:1349} : (from ('::ffff:137.220.145.118', 55434, 0, 0)) Invalid HTTP method: '\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Ê\x0026' +[2025-03-01 22:07:29,174] ERROR {cps.server:1349} : (from ('::ffff:47.250.142.224', 33876, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé: (from ('::ffff:198.235.24.86', 65006, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8fN`\x13´\t³\x90Y\x96\x0c\x92WU£\x9bS9e©uÀQÞ\x87\x88M|A¿\x01| Ó\x8c5Ë\x83\x8cÄ\x17´"\x1a\x03!µb\x19b\x12Õs\x05\x86\x9dÁ=«\x9b´.$°4\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-03-02 03:47:55,301] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.86', 65020, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x87~ÞpÚ¤\x9f\x02]QXL3U\x0bWØN9EíTþÐ*¿â\xa0\x89»Ü<\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-03-02 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-03 04:00:00 UTC)" (scheduled at 2025-03-02 04:00:00+00:00) +[2025-03-02 04:00:00,005] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-03 04:00:00 UTC)" executed successfully +[2025-03-02 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-03 04:10:00 UTC)" (scheduled at 2025-03-02 04:10:00+00:00) +[2025-03-02 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-03 04:10:00 UTC)" executed successfully +[2025-03-02 11:34:17,010] ERROR {cps.server:1349} : (from ('::ffff:182.237.2.170', 55592, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00°\x01\x00\x00¬\x03\x03v5â½\x05N¯\x18TÞRT\x87¥£6ßÝÄ´RÍÂ\n' +[2025-03-02 12:43:56,586] ERROR {cps.server:1349} : (from ('::ffff:152.32.235.69', 41804, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03)·\x021ªÚ\x9döíè½ÅW\x07\x9b\x13÷\x18ÑúÄ\n' +[2025-03-02 12:43:56,680] ERROR {cps.server:1349} : (from ('::ffff:152.32.235.69', 41812, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n' +[2025-03-02 18:34:19,274] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.35', 38591, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x0167=¼÷P9þÎ\x08\x1f\xad\x10£Àâ7!kÒA\x0e<øÞÓk|ÊÂû \x8eøðÖúL£î¬¨\x8bí³_â¯F\x11\x83Äsðí:Â@Ê&\x8cs\r4\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-02 18:40:07,193] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.28', 39881, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03,ßò#ºó\x8bò\xa0-\x1bJ?Ê̳\x91Î%Õ\x04ì¬\x8dßkÞä³ÎòÝ ¾L"dÊþ\x9f¨p\x82z2\t=ùÞ¬lâ\x14m\x043¯\x1fÊ¢\x91h\x1bÁL\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-02 18:41:06,423] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.30', 45245, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x93\x10*uƺ8\x0f@¦0ú\x8a\x8d2\x04¤\x8f³yýº@s\x94!\x00\x92»=ü6 \x964,\x90PÚÖ2»\x9bZÂ\x1f[\x11_\x04v,2\x123-3s½°Ó\x933Zû\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-02 18:47:08,641] ERROR {cps.server:1349} : (from ('::ffff:91.196.152.16', 37857, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03í3-Ѷ=ú\xadåÄ\x02mË: ½½\rÂ\x1a\x83\x93=ÏÛ¢*s3\rÖò ú\x13ÄÿO\xad³\x19a7bÂì4Ûç\x0f\x8aÞÚ\x11b\x036(Á³3\x9eæÿù\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-03-02 20:30:43,673] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.210', 61484, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x038{F©=fâ<¨\x90ï\x98´\x10t\x86\n' +[2025-03-02 20:30:43,833] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.210', 61488, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ß\x9a\x01ÚF·\x05¹¿0\x15/u\x06â\x94\x01NÌÏz|\x83m\n' +[2025-03-03 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-04 04:00:00 UTC)" (scheduled at 2025-03-03 04:00:00+00:00) +[2025-03-03 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-04 04:00:00 UTC)" executed successfully +[2025-03-03 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-04 04:10:00 UTC)" (scheduled at 2025-03-03 04:10:00+00:00) +[2025-03-03 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-04 04:10:00 UTC)" executed successfully +[2025-03-03 06:12:26,511] ERROR {cps.server:1349} : (from ('::ffff:20.29.22.209', 37568, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-03-04 00:01:18,207] ERROR {cps.server:1349} : (from ('::ffff:20.171.25.216', 50388, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' diff --git a/conf/calibre-web/calibre-web.log.2 b/conf/calibre-web/calibre-web.log.2 new file mode 100644 index 0000000..985ba07 --- /dev/null +++ b/conf/calibre-web/calibre-web.log.2 @@ -0,0 +1,338 @@ +[2024-12-28 02:34:19,866] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.71', 60930, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ó#^k+\x86\x81\x18.\x8f\xad)¸_øÇ\x04\x02\x06\x88\x15n\x9fMºùDÒ«\x1am\x12\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ó#^k+\x86\x81\x18.\x8f\xad)¸_øÇ\x04\x02\x06\x88\x15n\x9fMºùDÒ«\x1am\x12\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2024-12-28 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-29 04:00:00 UTC)" (scheduled at 2024-12-28 04:00:00+00:00) +[2024-12-28 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-29 04:00:00 UTC)" executed successfully +[2024-12-28 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-29 04:10:00 UTC)" (scheduled at 2024-12-28 04:10:00+00:00) +[2024-12-28 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-29 04:10:00 UTC)" executed successfully +[2024-12-28 09:33:35,351] ERROR {cps.server:1349} : (from ('::ffff:101.36.127.24', 38866, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03rGÑê>r7rl?\x11\x19]ZpïØÚå³°Y&Æ\x9fÕÈï\x849v\x8e ßvfH\x91¦¨i"£ÅÎ\x08V\x11,\x10(µP¼[!¦OÅ\x1b·¦\x16;¥\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2024-12-28 09:33:35,749] ERROR {cps.server:1349} : (from ('::ffff:101.36.127.24', 38968, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n' +[2024-12-28 10:25:16,521] ERROR {cps.server:1349} : (from ('::ffff:104.156.155.31', 49616, 0, 0)) Invalid HTTP method: '\r\n' +[2024-12-28 10:25:26,847] ERROR {cps.server:1349} : (from ('::ffff:104.156.155.31', 56576, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03\x15\n' +[2024-12-28 10:25:27,658] ERROR {cps.server:1349} : (from ('::ffff:104.156.155.31', 49682, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001' +[2024-12-28 13:29:59,032] ERROR {cps.server:1349} : (from ('::ffff:40.78.88.153', 33920, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2024-12-28 18:14:35,911] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.233', 58614, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03½j\x9dÀ²Þm\x98ü\x8b\x8bÛ¸T\x0e¨s\x8eV2ÿ'àF*Û\x86Yâi÷o \x16\x97\x91ÃÄ\x00 kyÀ\x1b\x9dwÊÌ\x7fê½}\x87À\x86(kw\x9eF,¡\x8aÈ\x1c\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2024-12-28 18:14:36,224] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.233', 58618, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¬\x91\x01i»¿\x98ýºlÉ\x12\x10õ¿\x820\x0cP"Q7Ȧº\x13\x9c<9þ½°\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2024-12-29 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-30 04:00:00 UTC)" (scheduled at 2024-12-29 04:00:00+00:00) +[2024-12-29 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-30 04:00:00 UTC)" executed successfully +[2024-12-29 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-30 04:10:00 UTC)" (scheduled at 2024-12-29 04:10:00+00:00) +[2024-12-29 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-30 04:10:00 UTC)" executed successfully +[2024-12-29 15:57:44,044] ERROR {cps.server:1349} : (from ('::ffff:71.6.199.23', 47686, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03\x9dKô×j\x13\x11Í\x00¤\x0fº>¼ìÁòCÍøFe\x8em\x91¯k¹'; path='˨Â\x00\x00rÀ0À,À(À$À\x14À'; raw='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03\x9dKô×j\x13\x11Í\x00¤\x0fº>¼ìÁòCÍøFe\x8em\x91¯k¹\t˨Â\x00\x00rÀ0À,À(À$À\x14À\n' +[2024-12-30 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-31 04:00:00 UTC)" (scheduled at 2024-12-30 04:00:00+00:00) +[2024-12-30 04:00:00,000] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-31 04:00:00 UTC)" executed successfully +[2024-12-30 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-31 04:10:00 UTC)" (scheduled at 2024-12-30 04:10:00+00:00) +[2024-12-30 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-31 04:10:00 UTC)" executed successfully +[2024-12-30 05:53:33,514] ERROR {cps.server:1349} : (from ('::ffff:172.168.155.103', 40712, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2024-12-30 07:37:58,571] ERROR {cps.server:1349} : (from ('::ffff:45.130.145.9', 63604, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2024-12-30 08:21:18,643] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.224', 57900, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8c?\x94ÈQ\x03¦K,c\x13\x90\x82q\x8dv\x15/hgÕS¨w\x08{ßsU)e× a3\x8cà\x1cäÏ\x10ùöÿÕÍNSMNÙùÕ`â\x99Ò¶(îoUkÀÄ\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2024-12-30 08:21:18,960] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.224', 57916, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03õ¿iK\x85U\x19\x9f\x0f]$#ù{Û\x98ª0UH\x9c\\ì\x1aÉ}m\x05BØüî\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2024-12-30 08:27:47,380] ERROR {cps.server:1349} : (from ('::ffff:45.130.145.9', 63423, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2024-12-30 09:10:58,036] ERROR {cps.server:1349} : (from ('::ffff:45.130.145.9', 65091, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2024-12-30 12:39:38,003] ERROR {cps.server:1349} : (from ('::ffff:45.130.145.9', 35399, 0, 0)) Expected GET method; Got command='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00'; path='\x00\x00\x00'; raw='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x0b\x00\x00\x00' +[2024-12-30 23:41:36,863] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.101', 58342, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ÙS\x96Þ\x92Õ\x1ea/\x83òÖ\x80\x11~"M#ÜU\x05Éè\x8bH\x03ñ4,vö¸ 5¦ô°\x82Å\x04müG\x13\x95¹¼ççLÔM»0N44\x87L[¦\x17m=Â\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2024-12-30 23:41:37,137] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.101', 58344, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¢f-\n' +[2024-12-31 03:38:38,426] ERROR {cps.server:1349} : (from ('::ffff:128.14.239.38', 40020, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03¶.^|\x8cIT\x95S/oàä0pÝòg6¸!\x03(¦\x9b·ÕoýOc[ 7ê¨\x07øì\x96e\xa0ÆîQ\x8e\x11³Ù\x88¥ûè¥\x9ae·\x19Ô«¿¿2(p\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' +[2024-12-31 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-01 04:00:00 UTC)" (scheduled at 2024-12-31 04:00:00+00:00) +[2024-12-31 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-01 04:00:00 UTC)" executed successfully +[2024-12-31 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-01 04:10:00 UTC)" (scheduled at 2024-12-31 04:10:00+00:00) +[2024-12-31 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-01 04:10:00 UTC)" executed successfully +[2024-12-31 14:06:44,158] ERROR {cps.server:1349} : (from ('::ffff:71.6.134.230', 43208, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03òáï´_·\x92\x10¸0]äBD©\x98K\x9d¤¬dT\x96¥zÒnJ\x9eIØ\x11 i{NÑJt+ÓÛ%\x027\x1dâ{môj¼\xa0z7+0\x10G'\x8d\x84\x1c/µ\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n" +[2024-12-31 14:41:37,781] ERROR {cps.server:1349} : (from ('::ffff:31.43.185.66', 61644, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2024-12-31 20:40:44,649] ERROR {cps.server:1349} : (from ('::ffff:52.226.2.121', 34238, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-01 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-02 04:00:00 UTC)" (scheduled at 2025-01-01 04:00:00+00:00) +[2025-01-01 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-02 04:00:00 UTC)" executed successfully +[2025-01-01 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-02 04:10:00 UTC)" (scheduled at 2025-01-01 04:10:00+00:00) +[2025-01-01 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-02 04:10:00 UTC)" executed successfully +[2025-01-01 04:25:09,810] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.85', 58112, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x0304\x08\x05%Q\x12ï\r¡LþÎ/U}í&\xadìÁ¨K8pæ\x15U\x80ÀvQ ]"E@\x06ÚVZ7vtAê¶\x00RZ\x92ÔT^\x83n.ªMq¤2",]\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-01 04:25:09,971] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.85', 58120, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03®^IÀU»îÇ\x938\x92\x95\x0fÙüT7ÙéygËpíN\x7f\x81·\x0c\x8a\x1d\x06\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-01 07:43:38,654] ERROR {cps.server:1349} : (from ('::ffff:138.68.247.47', 44266, 0, 0)) Invalid HTTP method: '\r\n' +[2025-01-01 19:56:17,899] ERROR {cps.server:1349} : (from ('::ffff:3.142.47.109', 40098, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x002}\x02Þa:\x11$oy¯\x96i\x8eô¡£ã\t.\x087\x06hP^)\x93\x93ÍI\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-01-01 22:34:31,712] ERROR {cps.server:1349} : (from ('::ffff:8.209.91.228', 30488, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé: (from ('::ffff:205.210.31.105', 62808, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03@\x81G5lù¹2#¾zI\x16g\x1dz}ÞO¢\x8eT«ë\x05\x87\x07\x14÷ëZ. 5¯7DZº7ü§eø\x82i¼\x15\x1e;m\x16\x9bé2Ç\x1dY6{ÎT\n' +[2025-01-02 08:56:48,080] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.105', 62820, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03µ£\x0c\x9bô=ó\x93ê÷\x17\x9dxÁæïÎtÙÒ.\x95¥©\x04ô©Rzÿ\tê\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-02 13:21:09,285] ERROR {cps.server:1349} : (from ('::ffff:40.78.127.139', 58306, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-02 21:53:20,714] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.101', 57840, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03xSýÚ\x9a\n' +[2025-01-02 21:53:20,990] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.101', 57842, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x96QMÌ\x11ß]¡Æ\x017N\x94~½Og\x1eYo\x9f+;\x85$«ÂÌ\x16\x1b¦\x14\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-03 00:26:30,789] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 49960, 0, 0)) Invalid HTTP method: '\r\n' +[2025-01-03 00:26:41,053] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 45220, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03nì \n' +[2025-01-03 00:26:41,793] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 49994, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001' +[2025-01-03 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-04 04:00:00 UTC)" (scheduled at 2025-01-03 04:00:00+00:00) +[2025-01-03 04:00:00,004] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-04 04:00:00 UTC)" executed successfully +[2025-01-03 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-04 04:10:00 UTC)" (scheduled at 2025-01-03 04:10:00+00:00) +[2025-01-03 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-04 04:10:00 UTC)" executed successfully +[2025-01-03 04:51:50,630] ERROR {cps.server:1349} : (from ('::ffff:4.156.237.242', 47160, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-03 21:33:32,470] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.165', 64428, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03vN\x7fI`«\x07åSn3\x0c\x85\x80Ä\rË\x131:kßòsë\x8f\x0bA\x00\x8b³¢ b¼\n' +[2025-01-03 21:33:32,626] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.165', 64444, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03|ñ\x1c<ÎÛâ\x05"ýó\x91\x0b\x92>\x91µ\x7fR JW\x1b\x14\x00}\x91/ôD\x93>\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2025-01-04 02:50:47,115] ERROR {cps.server:1349} : (from ('::ffff:71.6.134.231', 53642, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8eml©\x83âÞûa^\x96Ê\x985éF\x88ZÑ5´qÕ7_\x8dIõå\x08Z² ÏÞ\x10\x14·\x80¨3Êéyâqc¬®Òç/¡"7v®\x12¢mΧzO\x93\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n' +[2025-01-04 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-05 04:00:00 UTC)" (scheduled at 2025-01-04 04:00:00+00:00) +[2025-01-04 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-05 04:00:00 UTC)" executed successfully +[2025-01-04 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-05 04:10:00 UTC)" (scheduled at 2025-01-04 04:10:00+00:00) +[2025-01-04 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-05 04:10:00 UTC)" executed successfully +[2025-01-04 10:44:02,658] ERROR {cps.server:1349} : (from ('::ffff:5.101.0.66', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n' +[2025-01-04 19:22:34,487] ERROR {cps.server:1349} : (from ('::ffff:145.239.154.85', 50014, 0, 0)) Invalid http version: '\x16\x03\x00\x00i\x01\x00\x00e\x03\x03U\x1c§ärandom1random2random3random4\x00\x00\x0c\x00/\x00\n' +[2025-01-04 21:25:03,776] ERROR {cps.server:1349} : (from ('::ffff:172.168.159.9', 55620, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-05 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-06 04:00:00 UTC)" (scheduled at 2025-01-05 04:00:00+00:00) +[2025-01-05 04:00:00,000] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-06 04:00:00 UTC)" executed successfully +[2025-01-05 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-06 04:10:00 UTC)" (scheduled at 2025-01-05 04:10:00+00:00) +[2025-01-05 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-06 04:10:00 UTC)" executed successfully +[2025-01-05 08:55:09,365] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.21', 60004, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\r\x04¯\x7f\x1f\x8bßRU@#Oî[\x0bI´¢ \x1cc\x1aÎè{}_ÝuÁ̧ ¤yUPä_8\x8eòÄn\x86\x04%É[3ïïö\x86\x16\x0b4Éa\x0f\x04>?.f\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-05 08:55:09,525] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.21', 60020, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8b¥_äÄñ\x8b\x12ÞÐw]#*ì°µ\r\x01ñyy\x1faƹC¶_OÖ±\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-06 00:19:50,009] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.202', 58784, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x04¬?\x7fÆÊa8?\x05\x90Bn!\x97»§ÌºWê~}sr3s¯¦\x7fò\x1b Ï\x89\x9c³`\x1b½T*\x95\x80B!×\x8f\x8e\x10´aT.\x91Ð\x03ñhÙTvs\x88ã\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-06 00:19:50,371] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.202', 58796, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03hµP\x9aÖ\\ßó\t¤`|f\x84\x1e³.}+\x16\x02N\x7f¦1N\x08cÔ\x16%Ú\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-06 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-07 04:00:00 UTC)" (scheduled at 2025-01-06 04:00:00+00:00) +[2025-01-06 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-07 04:00:00 UTC)" executed successfully +[2025-01-06 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-07 04:10:00 UTC)" (scheduled at 2025-01-06 04:10:00+00:00) +[2025-01-06 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-07 04:10:00 UTC)" executed successfully +[2025-01-06 13:27:23,917] ERROR {cps.server:1349} : (from ('::ffff:172.168.152.22', 55608, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-07 01:41:07,294] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.11', 62512, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03[\\Ã\x9cecÚ;·^\x05\x98Úh¾ÿ\x95\x0cïK\x93ä¼(W^\tXS\x91¯V -Qi̵ÖpíEty°zí\x1e³4\x8a>C\x01\x90åÙ\x94\x97¸J\x16\x1bÜ|\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-07 01:41:07,570] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.11', 62514, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x0cû!¹\x85F\x87\x9c\x15\x84\x1dâ]U/RJ\x95Àdjò«·³f\t¤O\x1b 2\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-07 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-08 04:00:00 UTC)" (scheduled at 2025-01-07 04:00:00+00:00) +[2025-01-07 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-08 04:00:00 UTC)" executed successfully +[2025-01-07 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-08 04:10:00 UTC)" (scheduled at 2025-01-07 04:10:00+00:00) +[2025-01-07 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-08 04:10:00 UTC)" executed successfully +[2025-01-08 03:09:02,996] ERROR {cps.server:1349} : (from ('::ffff:172.206.140.188', 45402, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-08 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-09 04:00:00 UTC)" (scheduled at 2025-01-08 04:00:00+00:00) +[2025-01-08 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-09 04:00:00 UTC)" executed successfully +[2025-01-08 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-09 04:10:00 UTC)" (scheduled at 2025-01-08 04:10:00+00:00) +[2025-01-08 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-09 04:10:00 UTC)" executed successfully +[2025-01-08 08:57:59,384] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.45', 61632, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03_â\x94¹5¤p\x95¢×ûd}\x9cÝX3{R0\x83Âúå¸\x1awi²£åE \x9aeH\x95keH\x96nº\x8d\x08\x8e\x9béÀ\x8c5R\x95·Y\\\x9d@h)Ã\x0eon\x1b\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-08 08:57:59,543] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.45', 61638, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03/Ry+é,y\x1b\x04»©þÑu\x8fäÁ\x98Ì«Igór\x82\x9b#øÂ\x1cáT\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-08 12:42:10,366] ERROR {cps.server:1349} : (from ('::ffff:180.149.125.173', 7315, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x99F¬æ¢4\x92§v: (from ('::ffff:172.168.152.6', 59758, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-08 23:14:27,234] ERROR {cps.server:1349} : (from ('::ffff:3.139.94.102', 55454, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03R¥\x02«nò\x89Å\x13¥§"\x91þ\x0e\x00XçÐ=eÊ4Ô\x17X\x12¬\x1cj¢\x8d\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-01-09 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-10 04:00:00 UTC)" (scheduled at 2025-01-09 04:00:00+00:00) +[2025-01-09 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-10 04:00:00 UTC)" executed successfully +[2025-01-09 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-10 04:10:00 UTC)" (scheduled at 2025-01-09 04:10:00+00:00) +[2025-01-09 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-10 04:10:00 UTC)" executed successfully +[2025-01-09 07:14:30,284] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.154', 62532, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Í(2[:\x0c\x18òÔ¬KMè0\x15J%î:©\x8a¦\x1b\x88]ÁC_]\xad\x90^ \x81á÷\x1f\x9aí-{æG¬5¡\x87\x8aw?Æ\\@â9\x82¾\xa0\x01\x07Â3\x1f"¨\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-09 07:14:30,644] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.154', 62534, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03r>\x7fÒB\x1fî\x91Uw½b>\x89X\x8eQlÛto\xadUiëgHµ\x00\x93Zå\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-09 18:19:20,983] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.42', 61724, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x1bs¶8Ù¦¶M}ý\x9d¹\x81_ïjíð¢\x1bej9L$2ÓýÚ-UÖ è\x1aÂ|R¤D\x7f·ºÉ\x87¾Åáê\x88¢z\x9d¾\x87Ù¿°\rN>Í\x18\x87Ë\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-09 18:19:21,142] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.42', 61730, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03!6¶+Æ¢\x17\x87\x04áú\x1d"ÿ%ûñ\x95ºÒ]\x18¼ÓÔe|×mY\x07\x14\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2025-01-09 22:11:03,127] ERROR {cps.db:883} Author Kagan, Robert not found to display name in right order +[2025-01-09 22:11:13,556] ERROR {cps.db:883} Author Kagan, Robert not found to display name in right order +[2025-01-09 22:11:36,011] ERROR {cps.db:883} Author Kagan, Robert not found to display name in right order +[2025-01-09 22:14:16,222] ERROR {cps.db:883} Author Kagan, Robert not found to display name in right order +[2025-01-09 22:14:23,191] INFO {cps.web:1237} Serving book: The Life-Changing Magic of Tidying Up_ The - Marie Kondo +[2025-01-09 22:14:23,196] INFO {cps.web:1237} Serving book: The Life-Changing Magic of Tidying Up_ The - Marie Kondo +[2025-01-10 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-11 04:00:00 UTC)" (scheduled at 2025-01-10 04:00:00+00:00) +[2025-01-10 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-11 04:00:00 UTC)" executed successfully +[2025-01-10 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-11 04:10:00 UTC)" (scheduled at 2025-01-10 04:10:00+00:00) +[2025-01-10 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-11 04:10:00 UTC)" executed successfully +[2025-01-10 10:40:03,596] ERROR {cps.server:1349} : (from ('::ffff:52.228.167.157', 59122, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-11 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-12 04:00:00 UTC)" (scheduled at 2025-01-11 04:00:00+00:00) +[2025-01-11 04:00:00,005] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-12 04:00:00 UTC)" executed successfully +[2025-01-11 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-12 04:10:00 UTC)" (scheduled at 2025-01-11 04:10:00+00:00) +[2025-01-11 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-12 04:10:00 UTC)" executed successfully +[2025-01-11 05:41:14,661] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.108', 59160, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Ù\x98\x86¸Té\x015¯IT\x1aÿHb\x17ѶÛ\'P\x83XÝ\x9cQhé\x9a\x82?î J3\x12#ú\x9b\\zJà\x9dëP;^\x1b?ý\x9a"\x0b^>ÌÜC/@ųo\x9c\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-11 05:41:14,822] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.108', 59166, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03p\x85l@Mûï\x12\x81ÇÑÁ\x97*Ùe\x94\x00³Mè\x9fè\x90Áb3Ê}\tQ\x88\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-12 01:51:35,237] ERROR {cps.server:1349} : (from ('::ffff:52.228.167.175', 57608, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-12 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-13 04:00:00 UTC)" (scheduled at 2025-01-12 04:00:00+00:00) +[2025-01-12 04:00:00,008] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-13 04:00:00 UTC)" executed successfully +[2025-01-12 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-13 04:10:00 UTC)" (scheduled at 2025-01-12 04:10:00+00:00) +[2025-01-12 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-13 04:10:00 UTC)" executed successfully +[2025-01-12 04:41:40,643] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.87', 58406, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Q7.N£`¦ÜÕ÷<é,ú4üz·#Â2s\x99Ûg\x8cjJðEêµ \x8fNá>\x1d~\\\x91\x89éM\x1f\x95cf\x15óöÏÎPÀ\x9eñ\x88\x87>z`\x04%\x18\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-12 04:41:40,919] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.87', 58420, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Y½Ê·sl¯\x00§>©\x07Óó(®æY\x03Ûóßxî\x1a1FI\x88ì]\x05\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Y½Ê·sl¯\x00§>©\x07Óó(®æY\x03Ûóßxî\x1a1FI\x88ì]\x05\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-12 17:58:30,616] ERROR {cps.server:1349} : (from ('::ffff:47.251.73.231', 54690, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé: (from ('::ffff:51.91.174.247', 42713, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x030¹8Ò¦´7\x06\xa0D\xad³~ß8m´ù7îÚâ=-îªÁLLû{\x1a Þ\x88Þ\x81\xa0w«K3\x97¿©2º\x96Ñ"boÞØ3Øk.\x80|6ê7NÒ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-12 20:00:05,953] ERROR {cps.server:1349} : (from ('::ffff:137.74.181.243', 40225, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x80#\x16ì\x04\x1bì(\x18ý~Æ*\x04a9«¯iÊó\x9b\x14\x16Á*$æìÝ\x0e\x04 v/2Ê#ñ2Z\x9c\x0fê:¶Ð\x16»¬íù[\xad\x03Ó¡a\x94×0\x1ds\x9e\x96\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-12 20:00:06,223] ERROR {cps.server:1349} : (from ('::ffff:137.74.181.240', 40211, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x033¯î.»/û2ÂÂÁj$ã\x9e®r\x1dfÃAáëdf\x02ñ#.È\xa0\x0f A\x1e\x9bÀò\x13Ód\x1b\x8d\x16"\x00.>Öb?;+\x13\x1d©/\x1cïb!o\x93ß\x03\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-12 20:06:07,328] ERROR {cps.server:1349} : (from ('::ffff:137.74.239.145', 50913, 0, 0)) Expected GET method; Got command='\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03'; path='9¾ºBô\x11ÑI\x9eÊ\x9e^1.ùi1W¸\x1bo'; raw='\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x1e9¾ºBô\x11ÑI\x9eÊ\x9e^1.ùi1W¸\x1bo\n' +[2025-01-12 20:13:58,681] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.78', 57648, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x9a³ÕXª\x93íRâ¯ßç\x03\x00:"\x192\x82\x81楾ÞÚ\x9d\x0b\x06N\x0c×n g4le4\x81\x8dI\x0f;\x05DW\x85\x82:«Ââäß\\ñ¯\x7fØåÐ\x9e\x97¶!\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-12 20:13:58,842] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.78', 57664, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03åçÆ6\x06\x11ÞSýÈ\xadÖMÂî§é\x95\rùõ»¢\x9a\x11\x02ö\x9a+\tõM\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-12 20:29:13,832] ERROR {cps.server:1349} : (from ('::ffff:92.63.196.142', 57562, 0, 0)) Invalid HTTP method: '\x05\x01\x00' +[2025-01-13 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-14 04:00:00 UTC)" (scheduled at 2025-01-13 04:00:00+00:00) +[2025-01-13 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-14 04:00:00 UTC)" executed successfully +[2025-01-13 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-14 04:10:00 UTC)" (scheduled at 2025-01-13 04:10:00+00:00) +[2025-01-13 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-14 04:10:00 UTC)" executed successfully +[2025-01-13 06:53:17,384] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 46708, 0, 0)) Invalid HTTP method: '\r\n' +[2025-01-13 06:53:27,828] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 44984, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03[\x93D²%t\x17B:öÒVý\x14\x05:éèöÐo)\x95k~K®zÝêí\x88 t$\x8f8D\x9d×üL\\\x0b_@1÷%ã¢SA]°fèE4®\x02{\x0e´\x1e\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À'\x00g\x00@ÀrÀv\x00¾\x00½À\n" +[2025-01-13 06:53:28,862] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 46744, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001' +[2025-01-13 16:36:03,910] ERROR {cps.server:1349} : (from ('::ffff:4.156.236.58', 43346, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-13 20:41:18,840] ERROR {cps.server:1349} : (from ('::ffff:152.32.245.93', 46506, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03Õ|Ajå/Â\x9f\x04==Å\x92)8B*N!vd_;õ£Q"e\x1dûÓ\x0f \x87\x1a]×o+\x9e\x8e¬ã\x85®èË\x034æÃ\xa04\x8c\x06ý\x9f\x91Ë2S?ßâÑ\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' +[2025-01-13 21:14:40,363] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.222', 61158, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03øy\x7f+øÕ\x0e\x9dA\x8e\x94\x90\'\x01Áo÷Ö\x01\x96\xa0÷º\\¢÷S\x0bVjlÈ C\x06r§g\x9cD3j¬i\x9a/u\x82®µöaÑ\x8aÓ2Úèê;KZÖm"\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-13 21:14:40,523] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.222', 61162, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x91P}Ôý÷\rñH\x87w7\x94å=¥\x9cá\x91(Oqq¯þ\x06ØðÐÕlÁ\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-14 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-15 04:00:00 UTC)" (scheduled at 2025-01-14 04:00:00+00:00) +[2025-01-14 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-15 04:00:00 UTC)" executed successfully +[2025-01-14 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-15 04:10:00 UTC)" (scheduled at 2025-01-14 04:10:00+00:00) +[2025-01-14 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-15 04:10:00 UTC)" executed successfully +[2025-01-15 02:16:25,381] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.108', 60276, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03|Hô\x88`\x18\x92<\xa0Ñ\x8cn°%a\x83¼î¼\x17\x85ª\x8fÈ\x8beoç5wÛ> 4`øpЬ\xad\x9a«J-Á\x1c\x00ä¦\x9c\x94pr¯V\x03ø\x9d?oL\x90\x88ô\x17\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-15 02:16:25,540] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.108', 60288, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x1eÒÄz\x85\x01"á-¿×\x16\n' +[2025-01-15 02:51:02,635] ERROR {cps.server:1349} : (from ('::ffff:185.220.179.175', 49870, 0, 0)) Invalid HTTP method: '\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x03\x00\x00\x00' +[2025-01-15 04:00:00,003] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-16 04:00:00 UTC)" (scheduled at 2025-01-15 04:00:00+00:00) +[2025-01-15 04:00:00,006] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-16 04:00:00 UTC)" executed successfully +[2025-01-15 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-16 04:10:00 UTC)" (scheduled at 2025-01-15 04:10:00+00:00) +[2025-01-15 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-16 04:10:00 UTC)" executed successfully +[2025-01-15 07:35:26,976] ERROR {cps.server:1349} : (from ('::ffff:52.189.74.240', 44964, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-15 22:11:24,105] ERROR {cps.server:1349} : (from ('::ffff:52.249.35.110', 46584, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-15 23:17:45,085] ERROR {cps.server:1349} : (from ('::ffff:54.38.100.144', 48129, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03nzêÙü\x98O\x1dÈ\x8fý6\xa0\x1bÝZÛ\x16~!O\x029\x1d( Óï\x94\x16Ï´ \x82#!'ýß\x87º\x19Ò\x14ª¹¼\x99«âÇû=\x1b\x8f\x19/Ã=\x90àÁó\x96>\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-01-15 23:25:08,330] ERROR {cps.server:1349} : (from ('::ffff:149.202.132.207', 50403, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03^ÕÒ~j\x0e(a¯¶\x8fmdÃ%\x13¼²\x01\x03ûNîË\x0f¢t±Ãyì M,ÒÀ¿êÑ\x91û\xad\x1a½ÆÁ\x9ecüù;o?>ôÓð3\x0c¶ò\x8f¸\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-15 23:25:10,151] ERROR {cps.server:1349} : (from ('::ffff:149.202.132.202', 35489, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03J³ñÑÿî*j3ó3/\x9f/Ù¼¾¬\x0bÙ2zý2³"\x0bÝÉ\x1e0 ã>|\x7f"Iö³¦Al\x8e¾\x0fy/\x1b\x01Ø\xad²óóõ\x8d\x9c¤: (from ('::ffff:51.178.236.242', 60689, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x13DvÞã~b\x1d:þÕËVC\x8aÍ2<É^ør\x9cá¹\x0cÉÄJÝ1! \x1dº\x8d\x06C\x13 3\x94\x80/à\x9dy\x1dp1\x07®\x0f\x0bÖÿ\x11\x1a\xa0\x8fâmÚÃË\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-16 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-17 04:00:00 UTC)" (scheduled at 2025-01-16 04:00:00+00:00) +[2025-01-16 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-17 04:00:00 UTC)" executed successfully +[2025-01-16 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-17 04:10:00 UTC)" (scheduled at 2025-01-16 04:10:00+00:00) +[2025-01-16 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-17 04:10:00 UTC)" executed successfully +[2025-01-16 05:48:19,167] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.55', 62142, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03cù\x14©J\x84i+\x1e%îÛ}´\x80¼UZ×_w\x82i\x91Î0_3üM/Þ V²·~öÒYÜ\x80Ü.u9\n' +[2025-01-16 05:48:19,327] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.55', 62144, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x97 ©=\x13%\x83\x1eO\x9fM.~ÎÃ\x06Ì\x11\x17\t4O6\x83{U\x1cV¼?Z\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-16 15:44:32,464] ERROR {cps.server:1349} : (from ('::ffff:18.117.147.107', 41574, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00{\x01\x00\x00w\x03\x03L\x8cü\x15\x9f&!õÔ\x04\x10\x03$VÑïÉ¿\x9aÄSN\x89¶?â\x8bV¾Ó>®\x00\x00\x1aÀ/À+À\x11À\x07À\x13À'; path='À\x14À'; raw='\x16\x03\x01\x00{\x01\x00\x00w\x03\x03L\x8cü\x15\x9f&!õÔ\x04\x10\x03$VÑïÉ¿\x9aÄSN\x89¶?â\x8bV¾Ó>®\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-01-16 17:20:54,727] ERROR {cps.server:1349} : (from ('::ffff:91.220.163.70', 65424, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-01-16 19:04:54,197] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.95', 59966, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ö\x01Ç]!\x94#Ë*$ö5Ò)w¡\x7fdöÁ\x9csnô\x84éå4¾\x06;e ë\x94=p\x8dþ\x98¥\x8c\x1c¸¯\x9d\x05\x06@öÙ¶Ã\x1b;ÛY\x06<\x9b·\x1d¼ë¤\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-16 19:04:54,473] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.95', 59972, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03â^-Ú!\x8dÝ:\x8e/\x91\x1bp`\x0cÞÛó©utJÍW\x7f\x05\x8f*õü\x14Ò\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-16 19:07:34,417] ERROR {cps.server:1349} : (from ('::ffff:91.220.163.70', 63717, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-01-17 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-18 04:00:00 UTC)" (scheduled at 2025-01-17 04:00:00+00:00) +[2025-01-17 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-18 04:00:00 UTC)" executed successfully +[2025-01-17 04:03:32,765] ERROR {cps.server:1349} : (from ('::ffff:146.70.119.16', 48983, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00ä\x01\x00\x00à\x03\x03Èòø©'XºØõ'li¼Í®5é§J\x9b\x92È\x88æzã\x060|G+Á \x98N\x1e^µ²\x0bÿ%ì©w\x8b^\x11J\x91Aõ\xa0\n" +[2025-01-17 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-18 04:10:00 UTC)" (scheduled at 2025-01-17 04:10:00+00:00) +[2025-01-17 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-18 04:10:00 UTC)" executed successfully +[2025-01-17 07:19:20,742] ERROR {cps.server:1349} : (from ('::ffff:71.6.134.231', 43102, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x87ú³6ÎÊ\x8dà8 \x98;Ê×\x1f\x0fŸº\x1b`%Z\x8d@/_~ï\x9b¶ª \x84{6\x81\x10ÊÏ\x94²»©.'ýË&\x87rjðM\x1eç\x81¼gú¹6¶×æ\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n" +[2025-01-17 12:38:09,749] ERROR {cps.server:1349} : (from ('::ffff:172.169.109.27', 49522, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-18 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-19 04:00:00 UTC)" (scheduled at 2025-01-18 04:00:00+00:00) +[2025-01-18 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-19 04:00:00 UTC)" executed successfully +[2025-01-18 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-19 04:10:00 UTC)" (scheduled at 2025-01-18 04:10:00+00:00) +[2025-01-18 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-19 04:10:00 UTC)" executed successfully +[2025-01-18 08:37:20,264] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.168', 59882, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x032\x08F<ªïH]\x06Ö£ùàÆ\x17è\x0f@\x08jÐÁ4»[0ÓäT¤\x9b\x05 ×ö&Jb\x13ÍYΨ¥ÍL{\x86\x02Ûñm¦[¸Ârò\x9f\x1c\x1f\x06Ìdõ\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-18 08:37:20,624] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.168', 59894, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03h;b\x05\x9b`_â¦b¬ÒkóÆ"a\x9bA\\\x04á^[Þ¨Õ6϶÷Ç\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À'; path='À(À$À\x14À'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03h;b\x05\x9b`_â¦b¬ÒkóÆ"a\x9bA\\\x04á^[Þ¨Õ6϶÷Ç\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2025-01-18 15:03:50,745] ERROR {cps.server:1349} : (from ('::ffff:71.6.134.234', 58950, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03rCñ\x06o\x80¡M/\x19zÊo§ÃÚ\x1e-)\x85Xü\x9b\x10dÓ9\x93²\x05e¹ dü\tÚâÖ¾Â\x0bÜewa\x8f&¢\x1e¦ù+%2\x07õò\x06³\n' +[2025-01-18 23:01:54,473] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.255', 61770, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03dÀ\x0b´B\x16j\x1e\x87íñ`|\x0b\x7f\x02²¿qvHÀ\x97û»üÃˤþ\x8e: õ9µ\x84Úµ\x92ìw¨Z8õGätgº>×¢x\x0c#\x80Ĥ§*\x19~ß\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-18 23:01:54,634] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.255', 61780, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x14ÃÜP6<¯\x80õà\x10\x15zK\x04\x19\x07'å\x97\x07/öý¦è4º]'.\x92\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x14ÃÜP6<¯\x80õà\x10\x15zK\x04\x19\x07'å\x97\x07/öý¦è4º]'.\x92\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-19 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-20 04:00:00 UTC)" (scheduled at 2025-01-19 04:00:00+00:00) +[2025-01-19 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-20 04:00:00 UTC)" executed successfully +[2025-01-19 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-20 04:10:00 UTC)" (scheduled at 2025-01-19 04:10:00+00:00) +[2025-01-19 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-20 04:10:00 UTC)" executed successfully +[2025-01-19 05:27:00,283] ERROR {cps.server:1349} : (from ('::ffff:4.156.236.193', 44306, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-19 07:05:48,246] ERROR {cps.server:1349} : (from ('::ffff:71.6.146.186', 37918, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03t\x00À¡\r,M£\x96Ü\x16Áe: (from ('::ffff:213.32.32.89', 58051, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ùJ\x0eª1\x1b³Ò¬ê:,â\x80ÿã\x9e9d\x12S\x90-\x82\x1dý\x8b':ð\x7f3 ¡q\x13aD1\x84Líb+rñZm\x10\x9bìý³Èß'ú\x99òS27\x10\x823\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n" +[2025-01-19 17:42:05,795] ERROR {cps.server:1349} : (from ('::ffff:137.74.239.157', 48267, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ó²?~!ÀÇÚÚFó¾$¿\x9e»Wó¢³tïtÙA¸Ãðß[õt \x0bÌ\x9bòûÛæÿ.çË1¼ÓÙCÔÓ¢ã\x0c\x98/\x98çf±,Ä\x10EF\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-19 17:42:06,636] ERROR {cps.server:1349} : (from ('::ffff:137.74.239.148', 35887, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÍDò¡7øQlÖ>\x8cÐÑÄ\x02òý@¢F\x12\x02\x0bß/\'â\x92à\x992í BA:\x02øõÿ\x12ÞÊ\x8dá\x16Ó\x1d\x0eÍ=\x10ÇÃò\x12ß\x9f"þù«9=b\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-19 17:49:06,076] ERROR {cps.server:1349} : (from ('::ffff:51.178.236.254', 32815, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03 Ý\x8d8FvÂ4ñ³À\x9b\x1b\x16\xad\x9aþ.\x87«6ê\x88iÓ÷\x9d³ÙÐÉË \x82tðʰ\x9f\x80/À¼Ðó+: (from ('::ffff:149.62.45.43', 34340, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x012ítÿÀ´\x99)\x97\x88¸qaR¥\x85\n' +[2025-01-19 22:46:48,568] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.225', 58116, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x94"rà\x7fo\x9bÞ»+W´\x8e*\x0eéö\x8fê,¨¦Ãj\x1c¸\t;0àon Øþ¿y\x1b½\xa0[øe\x10\x8c\x89&\x0c¦¦»®ñ\x05hoöF\x02\x87rO\x87£Y\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-19 22:46:48,928] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.225', 58118, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x030B\x02¢Ú\x147\x01\x11åS¢Ý\x08íTx»\x8eËâ\x97`#@Ó¡\x9fÄ?=Ú\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x030B\x02¢Ú\x147\x01\x11åS¢Ý\x08íTx»\x8eËâ\x97`#@Ó¡\x9fÄ?=Ú\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-20 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-21 04:00:00 UTC)" (scheduled at 2025-01-20 04:00:00+00:00) +[2025-01-20 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-21 04:00:00 UTC)" executed successfully +[2025-01-20 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-21 04:10:00 UTC)" (scheduled at 2025-01-20 04:10:00+00:00) +[2025-01-20 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-21 04:10:00 UTC)" executed successfully +[2025-01-20 19:20:33,003] ERROR {cps.server:1349} : (from ('::ffff:104.40.91.102', 39650, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-20 19:23:22,783] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.209', 60832, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Ö»ÄÙ3SÑ_\x13}ä±4Ò§V\x7fe[\x8c\x13þ]Y»ìûØî1dU b¶ÂúP|t\x9d\x94aÌ\x8fA\xad°¶\x80NCð÷©\x059\x83\x13\x18ó\x8d\x1c`?\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-20 19:23:23,095] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.209', 60834, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ô\x0b¯Ï\x9fo[\x99\x84Êc°sù¦6¶5fê\x9e\x88\x14\x9e;wéä3c1/\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-21 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-22 04:00:00 UTC)" (scheduled at 2025-01-21 04:00:00+00:00) +[2025-01-21 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-22 04:00:00 UTC)" executed successfully +[2025-01-21 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-22 04:10:00 UTC)" (scheduled at 2025-01-21 04:10:00+00:00) +[2025-01-21 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-22 04:10:00 UTC)" executed successfully +[2025-01-21 08:12:36,894] ERROR {cps.server:1349} : (from ('::ffff:80.82.77.202', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n' +[2025-01-21 16:10:30,092] ERROR {cps.server:1349} : (from ('::ffff:45.156.129.122', 35827, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03%\x01£#rÿV\x9eÍõØõÐ|ƹ*·,£Ëe7R\x9fböö%˰\x98\x00\x00BÀ\x11À\x07À\x13À'; path='À\x14À'; raw='\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03%\x01£#rÿV\x9eÍõØõÐ|ƹ*·,£Ëe7R\x9fböö%˰\x98\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n' +[2025-01-21 16:10:58,685] ERROR {cps.server:1349} : (from ('::ffff:45.156.129.121', 59469, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03^\x7fÕÅ¡$s\x7f&\x82a2åâ\x97Î\x01ÿ\x03h\x84x\x18S\x16?w\x91ïåñr\x00\x00BÀ\x11À\x07À\x13À'; path='À\x14À'; raw='\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03^\x7fÕÅ¡$s\x7f&\x82a2åâ\x97Î\x01ÿ\x03h\x84x\x18S\x16?w\x91ïåñr\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n' +[2025-01-21 20:53:13,020] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.90', 58950, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x037R\x80{\x1e¯/\x1cAt\x97\x00\x1a]Fß%\x99Ô\x9b\x9c§\x14äÛo\x90\x82[\x16\x89\x88 \x872.+\x83@2·\x0c.x·nÁè_y^^pC#á\x8dÉ\x8cZ\x9a\\È\x81Ï\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-21 20:53:13,298] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.90', 58964, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x01K\x8c5á\x82ý°n8?<3¨\x04?&&\x83\x8bK,eÌ4þä\x8c\xad\n' +[2025-01-22 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-23 04:00:00 UTC)" (scheduled at 2025-01-22 04:00:00+00:00) +[2025-01-22 04:00:00,008] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-23 04:00:00 UTC)" executed successfully +[2025-01-22 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-23 04:10:00 UTC)" (scheduled at 2025-01-22 04:10:00+00:00) +[2025-01-22 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-23 04:10:00 UTC)" executed successfully +[2025-01-22 10:29:58,551] ERROR {cps.server:1349} : (from ('::ffff:52.160.35.198', 40210, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-22 14:06:05,620] ERROR {cps.server:1349} : (from ('::ffff:45.142.193.19', 65073, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-01-22 18:59:40,413] ERROR {cps.server:1349} : (from ('::ffff:45.142.193.19', 61625, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-01-22 21:36:44,671] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.57', 60948, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03pQÌ\x11i=ƨ\x17cÀ\xa0\x87þæ\x02®\x81ð¶\x9elº{]ë\x93S\x19ëÜ \x92\x82鮡»x\x85\x14\x83\x14÷¨æVÿ±\x14¥]°\x04U:wê\x1dÝ\x04\x01Ûx\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-22 21:36:44,826] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.57', 60952, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03 LY\x92ºz\x81tÎ5\x82\x00¾ÿ\x17Á%\x9b\x93¹\x91W\x169ç/\x87>ª«\x05ö\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-22 21:39:28,429] ERROR {cps.server:1349} : (from ('::ffff:45.142.193.19', 64961, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-01-23 01:34:34,260] ERROR {cps.server:1349} : (from ('::ffff:213.32.32.82', 41319, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03op³2û§ðÐw<ëà4qc¿:\x1d)2E\x16k\x0bÙ-\x13GßùlÒ N®+@Oÿý\x14ÝÏÏ\x16\x87\x8fí"Ã××ðü: (from ('::ffff:137.74.239.157', 60699, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03k\x0e¥\x9e:óüAæB¤\x0c\x1e|\x19$~*ê\x8cí\x07£þî\x0f\x17\x01¦\x01<\x11 .=h bã\x82¤\x8b-\x14Ó¬\x8e`+n\x12b20\x81+\x1cs4ä¯!\x1dÌM\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-23 01:41:08,313] ERROR {cps.server:1349} : (from ('::ffff:137.74.239.147', 56829, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03°Ð\x94bç(«\x91O\x16¹\x89\x11ý\x15\x13\x9b¾0Î\x13²|\x13\x04¿\x12\raD3\x1c .\x1e\x8aÚÆ\x1epl\x7f\x8e?î%ɨ¨6\x13Ï\x02Óàý¸\x02·4\x87(\x8cj«\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-23 01:47:09,571] ERROR {cps.server:1349} : (from ('::ffff:54.38.100.152', 49069, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03üý\x9a\xa0,¤ªê\x84\x8b2\x7f©M\x17L© ./0\x94ú²\x10£\x13¦aÎÑ\x9e «\x8b\x0c\x86«\x1c\x94:3\x02âÊõX\x1b\x96Æ¡\x0e}\x84<Þ>«{ã\xad\x91#¢8\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-23 02:27:12,572] ERROR {cps.server:1349} : (from ('::ffff:45.142.193.19', 61604, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-01-23 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-24 04:00:00 UTC)" (scheduled at 2025-01-23 04:00:00+00:00) +[2025-01-23 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-24 04:00:00 UTC)" executed successfully +[2025-01-23 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-24 04:10:00 UTC)" (scheduled at 2025-01-23 04:10:00+00:00) +[2025-01-23 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-24 04:10:00 UTC)" executed successfully +[2025-01-23 10:16:59,827] ERROR {cps.server:1349} : (from ('::ffff:18.216.255.128', 43384, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03.½Ç\x9dª¤çò\x89\x85\x11¬¸¡s¯·µ\x14sYÙ\xa0È\x92ý\x99\x95ïw\x8bW\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n' +[2025-01-23 16:35:33,124] ERROR {cps.server:1349} : (from ('::ffff:165.154.6.224', 49618, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03¢[\x89tL¬aÅ\x81 äçy_Ñ\x17QæD\x9eQq·}\x16\x9fç\x82cǯç Dr)ôHÀ¾kQð¯\x8b\x84\x86Üñ\x81A\x01\x7f \x9b$¶Í¤\xadØ\rT\x87\x88\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-23 16:35:33,511] ERROR {cps.server:1349} : (from ('::ffff:165.154.6.224', 49664, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n' +[2025-01-24 02:32:34,134] ERROR {cps.server:1349} : (from ('::ffff:172.170.166.238', 60374, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-24 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-25 04:00:00 UTC)" (scheduled at 2025-01-24 04:00:00+00:00) +[2025-01-24 04:00:00,000] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-25 04:00:00 UTC)" executed successfully +[2025-01-24 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-25 04:10:00 UTC)" (scheduled at 2025-01-24 04:10:00+00:00) +[2025-01-24 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-25 04:10:00 UTC)" executed successfully +[2025-01-24 05:48:18,558] ERROR {cps.server:1349} : (from ('::ffff:47.254.204.49', 26404, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé: (from ('::ffff:198.235.24.170', 64260, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x037ïtL;n\x0bz1ÛEZ!\x02=r~$\x11\x91\x8b_¥ÿlJ\t\x12©ÃÒ\x1c -´\x13~/Ï#BéÖ}"e"G@¡ç¥Lòº\x17fn8åxû×M.\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-24 09:14:22,654] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.170', 64266, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03è\x1bö[³bU%QæQ¡}>\x00ÔdÝ\x9a¯'_8\x16¢\x17\x022Í_¾\x1c\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-24 12:34:45,840] ERROR {cps.server:1349} : (from ('::ffff:167.99.149.47', 42238, 0, 0)) Invalid HTTP method: '\r\n' +[2025-01-24 22:59:05,893] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.255', 61794, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x90Ä\x8eéJy\x0cÀ$\x16±1äm°óÁI[s¹º0©D\x0e\x92\x85;®\x94\x15 »Gh"º¤Ó7bl¢ìÛ\x03\x91å0ø\x82¬Wó¼å*Úum\x89{K³\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-24 22:59:06,203] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.255', 61808, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x0382±èØ^\x10Ác\x14¹\x14t%¿8Ì.4Â\x95\x16\x9d?9ëÝm\x00\x06\x89$\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x0382±èØ^\x10Ác\x14¹\x14t%¿8Ì.4Â\x95\x16\x9d?9ëÝm\x00\x06\x89$\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-25 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-26 04:00:00 UTC)" (scheduled at 2025-01-25 04:00:00+00:00) +[2025-01-25 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-26 04:00:00 UTC)" executed successfully +[2025-01-25 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-26 04:10:00 UTC)" (scheduled at 2025-01-25 04:10:00+00:00) +[2025-01-25 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-26 04:10:00 UTC)" executed successfully +[2025-01-25 19:03:20,202] ERROR {cps.server:1349} : (from ('::ffff:4.156.237.243', 42726, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-25 21:55:47,530] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.224', 65294, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\rØàETlg=lú63¿Úå@Ê\x8f[¬\r\x08§4ñÙ¥\xa0\x85o\x13É Ï\x0clDx\x87\x84ò\x17ÞÍq\x14\x7f\x060ÀIî"}\x1c«bÖ~¸×\x17Q{\x87\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-25 21:55:47,889] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.224', 65310, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03V\x8cÅÆ\x86\x929½\x0cW[ÉÿµO¢%S\\H\x84\x8aÆM\x87úÈiÀ$$\\\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-26 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-27 04:00:00 UTC)" (scheduled at 2025-01-26 04:00:00+00:00) +[2025-01-26 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-27 04:00:00 UTC)" executed successfully +[2025-01-26 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-27 04:10:00 UTC)" (scheduled at 2025-01-26 04:10:00+00:00) +[2025-01-26 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-27 04:10:00 UTC)" executed successfully +[2025-01-26 18:53:10,507] ERROR {cps.server:1349} : (from ('::ffff:51.91.174.245', 49903, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Q\r\x9aQj\x9dÚN{0!ö\x8a\x82·q\x17;®\x9c7\x9c³Ñ±\x8d\x1f\x1cô)£` cô§\x11D¯®pÜÛ\x0ek² \x13kÒj(ñ0ð\x19s*r>à:1\x00\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-26 18:59:05,585] ERROR {cps.server:1349} : (from ('::ffff:137.74.181.240', 60997, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03÷\r·0ji\x81\x06Û\x8døIËkÍâ\x9dé\x9cFó\x13üà=L?\x83\x12³\x02\x8b Ù\x0foìGäùº´,Ó\x91O±³ Õ0°Hû\x89\x92.¥@&6\x8cb3¤\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-26 18:59:06,333] ERROR {cps.server:1349} : (from ('::ffff:137.74.181.244', 48541, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x1bås\x1dÔ_ÎÿÆå/\x82ÿ1ê1õºÑÃÔ,à\x01Ó(«°"ý\x063 (¿\x92üç\x99C\x1e¯s-FÉa¹ó"#ò\x14\x02û\x81N\x8d!0\x95^àÎ\x9c\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-26 19:05:07,629] ERROR {cps.server:1349} : (from ('::ffff:137.74.239.154', 39061, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x03Øo»ý\x0cü\x9dB\x08ÍaC\x9e¦®1\x13\x88\x12ôò\x10à\x98Ñ`ÿÒ¸´\x83 á/m\x0cÀ\x0b\x1b½ÜÒ\x12%ð1\x03Þã»\x7f&\xa0¼·\x13àæ æÑ6íN\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-27 00:26:35,845] ERROR {cps.server:1349} : (from ('::ffff:152.32.149.246', 33216, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03!\x91ù\x90\x9cOÞà\x8dÿ£\x1bß5,ô¡$\x1f®çMN²©\x13Üï\x8b\x99\x89* 4$Ae·\x99\x14\x8fàÆ95þ"\x02Ø3E¡\x90\x06\x16\x03a1É·\x84x\x9cVÎ\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' +[2025-01-27 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-28 04:00:00 UTC)" (scheduled at 2025-01-27 04:00:00+00:00) +[2025-01-27 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-28 04:00:00 UTC)" executed successfully +[2025-01-27 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-28 04:10:00 UTC)" (scheduled at 2025-01-27 04:10:00+00:00) +[2025-01-27 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-28 04:10:00 UTC)" executed successfully +[2025-01-27 06:27:13,073] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.72', 63288, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x9d§\x01Æê\x8ebkv¯ÿ\x1bð\x01\x83Uit\x82\x8eÁ\x98½kï\x99\t®Ì\x0c\x04 \x13§4\x88ÌfätkZpÀFS 'e\x8c³®\x87Wìi½ÒÊOþ7\x0bv\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-01-27 06:27:13,237] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.72', 63300, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03*\x04\x05èsçb#ïM)\x84þdåG b#í\x0cê\x9d-`¹×R\x06\x8b\x02\x0c\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-27 10:04:48,490] ERROR {cps.server:1349} : (from ('::ffff:52.234.238.238', 48128, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-28 03:19:22,768] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.37', 64000, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x0fçÌ)qe\tñöC\x1dh\x94\x91\x86Ϭ\x1d7\x12ó\x90ë=z¸\x93Î\x9bá@\x92 Ù`ÁÛoVpVØ\x07\x87\x02'\x94B©!tãC®\r¯yíÑô\x7f\x93&}\x7f\x00&À+À/À,À0̨̩À\tÀ\x13À\n" +[2025-01-28 03:19:22,933] ERROR {cps.server:1349} : (from ('::ffff:147.185.132.37', 64012, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x0b\x02Á\x02×R²\x94\x9fÇNò\x8f~*É$²²y\x017"mÆ\x91$¯~íÝ%\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n' +[2025-01-28 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-29 04:00:00 UTC)" (scheduled at 2025-01-28 04:00:00+00:00) +[2025-01-28 04:00:00,024] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-29 04:00:00 UTC)" executed successfully +[2025-01-28 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-29 04:10:00 UTC)" (scheduled at 2025-01-28 04:10:00+00:00) +[2025-01-28 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-29 04:10:00 UTC)" executed successfully +[2025-01-28 11:23:41,900] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 59954, 0, 0)) Invalid HTTP method: '\r\n' +[2025-01-28 11:23:49,116] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 60764, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03ÿ±\x05D\x8bDC\x88'; path=':\x84\x18nª¶'; raw='\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03ÿ±\x05D\x8bDC\x88\r:\x84\x18nª¶\n' +[2025-01-28 11:23:52,637] ERROR {cps.server:1349} : (from ('::ffff:139.144.52.241', 59996, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001' +[2025-01-29 00:54:27,624] ERROR {cps.server:1349} : (from ('::ffff:172.202.251.250', 36626, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-29 03:45:29,991] ERROR {cps.server:1349} : (from ('::ffff:42.200.142.163', 43532, 0, 0)) Invalid HTTP method: '\x16\x03\x00\x02\x00\x01\x00\x01ü\x03\x03úØ7¦\x0bjð÷*]\x11\x15\x1b\x10\x12\x10\x1fà=\x7fX\x17\x8a\x9aE[ø°\x8aØ5t A¨õòpÂFS\r+\x0f\x97¹Æ¿\x99[\x9dr\x82»9!1,\x99\x95%ì%ÕK\x00"ºº\x13\x01\x13\x02\x13\x03À+À/À,À0̨̩À\x13À\x14\x00\x9c\x00\x9d\x00/\x005\x00\n' +[2025-01-29 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-30 04:00:00 UTC)" (scheduled at 2025-01-29 04:00:00+00:00) +[2025-01-29 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-30 04:00:00 UTC)" executed successfully +[2025-01-29 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-30 04:10:00 UTC)" (scheduled at 2025-01-29 04:10:00+00:00) +[2025-01-29 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-30 04:10:00 UTC)" executed successfully +[2025-01-29 09:19:15,036] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.248', 59768, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03á»|̽7Û×\x9c\x06ÛA\x88Öñ¯`R\x87AL\x9a-È9\x00\x0f\x06d\x91Õ\x83 ¿bí{)X\x8aãbB]ü"}ÚÈ\x1a0Bùn@?\x90]ýõ\x9d78\x1e@\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-29 09:19:15,393] ERROR {cps.server:1349} : (from ('::ffff:205.210.31.248', 59772, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ªT,!D\x80\x9eÖ\x99õ\x98\x81\x0fs\x0e\\]m/?5\x0cÑYÏïñO\x84LX\x9e\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-29 22:46:25,951] ERROR {cps.server:1349} : (from ('::ffff:71.6.134.234', 38806, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Dåÿ\x16¹ÍÀ0}¼m¿ia\x7f}1Ð\x8f°\x08Du\x8dZÓB\x85L]\x15( X\x94\x99ïbêý_Ä´Ô\x01Þ\x1a¹qM_\x9eÓó\x91Ó³3mÙÁ~N\x83Ö\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n' +[2025-01-30 02:03:49,651] ERROR {cps.server:1349} : (from ('::ffff:54.38.100.144', 57089, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Á,\x9d0<±28K\x17Ay¦¾úrª(\x94´³1ïô`Áñ\x07°\xa0\x86á \x87\x15!B\x1f\x9dòN\x0e:Ö\x17\x02ëj:}1þ³\n' +[2025-01-30 02:10:11,797] ERROR {cps.server:1349} : (from ('::ffff:5.135.238.156', 43337, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Á\x9c×\x81Ð\x0f©¢K.r\x8f=3£ûÇ\x0e\x8e\x16\n' +[2025-01-30 02:10:13,472] ERROR {cps.server:1349} : (from ('::ffff:5.135.238.149', 57921, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03¼:±?ßÏËOAòÝ2Û\x03ÛM\x13îä?mn\x19lÎßÃ\x1a\x16Á\x0e\x1c )\xadú\tÚ&½\x12l\xadº«\x82Æ\x90\x87MÑ¡\x9am\x1a=\x12®<\xad\x9fa\x8e\xadË\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n' +[2025-01-30 02:16:11,759] ERROR {cps.server:1349} : (from ('::ffff:51.178.236.254', 38259, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03!³\x02\x1d\xadý\x11aa¬\x1b&Áð,\t\x0f±½pÉ"ñ\x8b\x07-+\x0b@Ý»\x0c Ý\x132J/±ÿÐ\x1dBd³B\n' +[2025-01-30 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-31 04:00:00 UTC)" (scheduled at 2025-01-30 04:00:00+00:00) +[2025-01-30 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-31 04:00:00 UTC)" executed successfully +[2025-01-30 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-31 04:10:00 UTC)" (scheduled at 2025-01-30 04:10:00+00:00) +[2025-01-30 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-31 04:10:00 UTC)" executed successfully +[2025-01-30 05:48:58,969] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.23', 57664, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03i\x1c%ë\x8bºÊÁDvÇ\x8aµÑ\x8d&(θ"u\x9fSã´Né\x03\x18h·w $\x9bd2Îvõ\x99NwLå|.M~7\x940[#\x02ý8n\xa0E \x15·-\x0b\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-30 05:48:59,240] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.23', 57674, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03«*\x9b\x927Äg\x89^Ú\x8d\n' +[2025-01-30 08:40:17,936] ERROR {cps.server:1349} : (from ('::ffff:194.164.107.5', 37946, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x97æ\x86Q\xa0\r\x0cK8WL\x84\x1a@L\x89U\x8dpìÓÑ3®¸z\x94oëÀ:Ý \x9c\x10ÙÜû\x9bo÷\x08\x02\x90æê\x80{MÉ¥?\x9f\x11\x91T\x12\x8b®v_SëG\x0b\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n' +[2025-01-30 13:56:05,400] ERROR {cps.server:1349} : (from ('::ffff:18.222.8.29', 59974, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x038§\x82\xad\xa0\x9b\x80C+\x98\x83 ÷Iz\x9b\xad\x93Y\x92\x94\\\t\x05: (from ('::ffff:172.169.111.13', 53318, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-01-31 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-01 04:00:00 UTC)" (scheduled at 2025-01-31 04:00:00+00:00) +[2025-01-31 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-01 04:00:00 UTC)" executed successfully +[2025-01-31 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-01 04:10:00 UTC)" (scheduled at 2025-01-31 04:10:00+00:00) +[2025-01-31 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-01 04:10:00 UTC)" executed successfully +[2025-01-31 05:41:35,598] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.214', 57386, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x96-\x12±\x85u8]7ã}\x01kö7´ìnóL$SoÆd\x023B\x8b\x16r\x02 C\x01óÿAÒ\x87!\x04=Ò!Ìïyöi\x1d,\x86§\x82í\x90BvLÿ\x825ÐÏ\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-01-31 05:41:35,910] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.214', 57390, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03=\x9a¹öF|®\x14´\x8f4Só{{\x1aùÏrRksSs»NËOãî`º\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03=\x9a¹öF|®\x14´\x8f4Só{{\x1aùÏrRksSs»NËOãî`º\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-01-31 08:42:47,307] ERROR {cps.server:1349} : (from ('::ffff:185.224.128.88', 36634, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03I\x00Q\x14$\x1a\x07\x151Õ7zAÙ¨·¦\x8a\x00¤f¯'; path="yª2z')\x19U\x0e\x00\x00\x82À0À,À(À$À\x14À"; raw="\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03I\x00Q\x14$\x1a\x07\x151Õ7zAÙ¨·¦\x8a\x00¤f¯\x1dyª2z')\x19U\x0e\x00\x00\x82À0À,À(À$À\x14À\n" +[2025-01-31 10:04:46,399] ERROR {cps.server:1349} : (from ('::ffff:31.43.185.66', 63340, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n' +[2025-02-01 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-02 04:00:00 UTC)" (scheduled at 2025-02-01 04:00:00+00:00) +[2025-02-01 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-02 04:00:00 UTC)" executed successfully +[2025-02-01 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-02 04:10:00 UTC)" (scheduled at 2025-02-01 04:10:00+00:00) +[2025-02-01 04:10:00,002] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-02 04:10:00 UTC)" executed successfully +[2025-02-01 07:08:43,806] ERROR {cps.server:1349} : (from ('::ffff:48.216.196.168', 47312, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n' +[2025-02-01 10:53:23,946] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.215', 64496, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03$Z\x80º\\(\x9c\x8eÒªÆ÷3xüÃ3Pþ>XX©O6G±y\x96Þ?± m(Ôì\x01\x89ö\x11[h\x9em¸È\x86_6\x05½Ë.#"ãy\x1c\x83¿\x9aòiÂ\x00&À+À/À,À0̨̩À\tÀ\x13À\n' +[2025-02-01 10:53:24,258] ERROR {cps.server:1349} : (from ('::ffff:198.235.24.215', 64504, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\tß\ry¯'»ûTÔu\x0f|I\x94\x16r:W\x05áµ\x1bÐZr\x18\rIÐ\x9br\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n" +[2025-02-01 11:00:34,591] ERROR {cps.server:1349} : (from ('::ffff:185.224.128.88', 35680, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x034+¼\x1b³¼ú \x02üýµe3\tõd\x1fxoþ©×±éÁ\x17\x92@NCì\x00\x00\x82À0À,À(À$À\x14À\n' +[2025-02-01 16:35:54,344] ERROR {cps.server:1349} : (from ('::ffff:204.76.203.71', 49498, 0, 0)) Invalid HTTP method: '\x05\x01\x00' +[2025-02-01 16:35:54,344] ERROR {cps.server:1349} : (from ('::ffff:204.76.203.71', 49508, 0, 0)) Invalid HTTP method: '\x04\x01\x01»\x00\x00\x00\x01proxychecker\x00api.ip.pn\x00' +[2025-02-02 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-03 04:00:00 UTC)" (scheduled at 2025-02-02 04:00:00+00:00) +[2025-02-02 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-03 04:00:00 UTC)" executed successfully +[2025-02-02 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-03 04:10:00 UTC)" (scheduled at 2025-02-02 04:10:00+00:00) +[2025-02-02 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-03 04:10:00 UTC)" executed successfully +[2025-02-02 06:41:13,627] ERROR {cps.server:1349} : (from ('::ffff:27.115.124.97', 1258, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01=\x01\x00\x019\x03\x03Qæ\x10Ê)«Üÿ²Õ\x87ÎC\x86{<Ñ\x11\x0c¦æ·ã1@\x9bÐÙF¯·W ¢±éª«\x92L¦\x0f\x03è?Ï\x05g\x05ò6c\x12\x1c\t³7bì\x98.Æ,\x16a\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n' diff --git a/conf/calibre-web/client_secrets.json b/conf/calibre-web/client_secrets.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/conf/calibre-web/client_secrets.json @@ -0,0 +1 @@ +{} diff --git a/conf/calibre-web/gdrive.db b/conf/calibre-web/gdrive.db new file mode 100644 index 0000000000000000000000000000000000000000..22fbcee0057e3b26735d8a708b73ef15569cf16d GIT binary patch literal 24576 zcmeI&&rYL29Ki9Rwsmb%>#f&c51X`!*~aY)$Tmc~+eJmH@kCfbmqe`=-0U8^58%`I z27B_2Jj(bF4I!>q@+ARge!~F2&&*{4yF2433FT-yJM|M8s1;=xYF$JrRY~`Hx<75Y zUVW;hXX8b=s8~^-_P;h;x2o2>QOnn@f32(L&GJRj<-`#{009ILKmY**5I_I{1l|;w zf2=OH`+Z~nC-Hxrgy-SxG>YSBdKP008NU&fZ?nx)%ViUJwguC-w~ zVsE)(PsZa_X)GNFv*=goWvx26?To&g&VhWh4x}3eJsq3aqn(K*-RBOyM$fF(+mpVb zqO&0U9bcTJt546rOs4mBFZUYWS}s(d?;DHlPRIEBkm~c@BLq zXSiuPMOhBF>|NI}Qz`KtpQO8amxq!ASQXt=h%;EIw>LUPI9VFr=d4^ERQ|KmTGnYH zolhV1oNDUBiaxL*fB*srAb Error calling http://10.0.50.45:3001/api/status-page/heartbeat/nethealth... +[2024-06-03T16:47:23.981Z] error: [ + 500, + Error: read ECONNRESET + at TCP.onStreamRead (node:internal/stream_base_commons:217:20) { + errno: -104, + code: 'ECONNRESET', + syscall: 'read' + } +] +[2024-06-07T17:42:22.893Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-07T17:42:22.895Z] error: Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) +[2024-06-07T17:42:22.896Z] error: Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) +[2024-06-07T17:42:22.896Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-07T17:42:22.897Z] error: Error calling https://10.0.50.50/... +[2024-06-07T17:42:22.897Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-07T17:42:25.960Z] error: Error calling https://10.0.50.50/... +[2024-06-07T17:42:25.961Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-07T17:42:25.960Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-07T17:42:29.032Z] error: Error calling https://10.0.50.50/... +[2024-06-07T17:42:29.033Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-07T17:42:29.034Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-07T17:42:29.036Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-07T17:42:29.037Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-07T17:42:29.037Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-07T17:42:29.040Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-07T17:42:39.272Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect EHOSTUNREACH 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-07T17:42:39.274Z] error: Error calling https://10.0.50.50/... +[2024-06-07T17:42:39.274Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T17:41:02.139Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:02.284Z] error: Error calling https://10.0.50.50/... +[2024-06-08T17:41:02.285Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T17:41:02.291Z] error: Error calling https://10.0.50.50/... +[2024-06-08T17:41:02.291Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T17:41:02.536Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:02.543Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:02.549Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:02.614Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:02.622Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:02.631Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:02.828Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T17:41:07.851Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:07.931Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T17:41:17.943Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:18.023Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T17:41:32.201Z] error: Error calling https://10.0.50.50/... +[2024-06-08T17:41:32.201Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T17:41:32.203Z] error: Error calling https://10.0.50.50/... +[2024-06-08T17:41:32.203Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T17:41:43.036Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:43.109Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T17:41:44.169Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:44.272Z] error: Error calling https://10.0.50.50/... +[2024-06-08T17:41:44.273Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T17:41:44.274Z] error: Error calling https://10.0.50.50/... +[2024-06-08T17:41:44.274Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T17:41:44.501Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:44.505Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:44.514Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:44.551Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:44.564Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:44.590Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:41:44.668Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T17:42:48.229Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T17:42:48.301Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:06:46.660Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:46.760Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:06:46.760Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:06:46.776Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:06:46.776Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:06:47.016Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:47.022Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:47.053Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:47.059Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:47.079Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:47.101Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:47.190Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:06:52.226Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:52.319Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:06:52.319Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:06:52.320Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:06:52.320Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:06:52.560Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:52.560Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:52.565Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:52.582Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:52.589Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:52.620Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:52.698Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:06:55.255Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:06:55.255Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:06:55.257Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:06:55.257Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:06:57.202Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:06:57.280Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:07:02.716Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:02.789Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:07:12.815Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:12.888Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:07:22.298Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:22.372Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:07:25.274Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:07:25.274Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:07:25.276Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:07:25.277Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:07:29.961Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:30.054Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:07:30.054Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:07:30.056Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:07:30.056Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:07:30.307Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:30.321Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:30.325Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:30.341Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:30.353Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:30.362Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:30.439Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:07:41.244Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:41.320Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:07:43.244Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:07:43.326Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:08:08.247Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:08.319Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:08:10.097Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:10.188Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:08:10.189Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:08:10.190Z] error: Error calling https://10.0.50.50/... +[2024-06-08T18:08:10.190Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-08T18:08:10.425Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:10.447Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:10.453Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:10.464Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:10.484Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:10.490Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:10.573Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:08:15.584Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:15.661Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-08T18:08:31.246Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-08T18:08:31.318Z] error: HTTP Error 500 calling http://10.0.50.45:8200/api/statistics/?format=json +[2024-06-09T20:43:48.665Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:48.841Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:43:48.842Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:43:48.843Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:43:48.844Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:43:49.255Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:49.626Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:43:49.626Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:43:49.628Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:43:49.628Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:43:49.880Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:49.979Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:49.980Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:50.003Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:50.011Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:50.043Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:50.050Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:58.536Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:58.632Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:43:58.632Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:43:58.634Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:43:58.634Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:43:58.851Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:58.854Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:58.859Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:58.886Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:58.916Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:43:58.920Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:44:32.482Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:44:32.595Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:44:32.595Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:44:32.598Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:44:32.598Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:44:32.817Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:44:32.843Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:44:32.848Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:44:32.881Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:44:32.910Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:44:32.911Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:44:49.635Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:44:49.635Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:44:49.637Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:44:49.637Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:45:12.685Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:45:13.500Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:45:13.500Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:45:13.501Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:45:13.502Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:45:13.726Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:45:13.738Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:45:13.738Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:45:13.784Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:45:13.811Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:45:13.814Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:45:19.662Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:45:19.662Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:45:19.664Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:45:19.664Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:45:49.691Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:45:49.691Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:45:49.693Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:45:49.694Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:46:19.714Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:46:19.715Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:46:19.718Z] error: Error calling https://10.0.50.50/... +[2024-06-09T20:46:19.718Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.50:443 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 443 + } +] +[2024-06-09T20:46:27.440Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:27.718Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:27.740Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:27.749Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:27.789Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:27.799Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:27.805Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:27.826Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:28.047Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:28.356Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:28.372Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:28.383Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:28.417Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:28.434Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:28.441Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:39.022Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:39.397Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:39.404Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:39.417Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:39.451Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:39.464Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:46:39.464Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:20.298Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:20.613Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:20.619Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:20.632Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:20.668Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:20.678Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:20.688Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:20.691Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:20.892Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:21.162Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:21.183Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:21.197Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:21.231Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:21.235Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:21.250Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:36.651Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:36.974Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:36.994Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:36.994Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.024Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.029Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.033Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.056Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.201Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.505Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.520Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.526Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.566Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.572Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:47:37.579Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:06.125Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:06.432Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:06.446Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:06.450Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:06.499Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:06.506Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:06.512Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:11.134Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:11.486Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:11.492Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:11.498Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:11.516Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:11.534Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:48:11.568Z] error: Error getting services from Docker server 'qnap-nas-docker': Error: connect ECONNREFUSED 10.0.50.50:2376 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.50', + port: 2376 +} +[2024-06-09T20:57:44.306Z] error: Error calling http://10.0.50.56:32400/... +[2024-06-09T20:57:44.306Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.56:32400 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.56', + port: 32400 + } +] +[2024-06-09T20:57:44.307Z] error: Error calling http://10.0.50.56:32400/... +[2024-06-09T20:57:44.307Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.56:32400 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.56', + port: 32400 + } +] +[2024-06-09T20:57:47.378Z] error: Error calling http://10.0.50.56:32400/... +[2024-06-09T20:57:47.378Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.56:32400 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.56', + port: 32400 + } +] +[2024-06-09T20:57:47.378Z] error: Error calling http://10.0.50.56:32400/... +[2024-06-09T20:57:47.378Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.56:32400 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.56', + port: 32400 + } +] +[2024-06-09T20:58:21.074Z] error: Error calling http://10.0.50.56:32400/... +[2024-06-09T20:58:21.074Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.56:32400 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.56', + port: 32400 + } +] +[2024-06-09T20:58:21.075Z] error: Error calling http://10.0.50.56:32400/... +[2024-06-09T20:58:21.075Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.56:32400 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.56', + port: 32400 + } +] +[2024-06-09T20:58:24.146Z] error: Error calling http://10.0.50.56:32400/... +[2024-06-09T20:58:24.146Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.56:32400 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.56', + port: 32400 + } +] +[2024-06-09T20:58:24.146Z] error: Error calling http://10.0.50.56:32400/... +[2024-06-09T20:58:24.146Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.50.56:32400 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.50.56', + port: 32400 + } +] +[2024-06-11T22:14:10.546Z] error: Error calling http://10.0.50.57:8096/emby/Sessions... +[2024-06-11T22:14:10.546Z] error: [ + 500, + Error: connect ECONNREFUSED 10.0.50.57:8096 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.0.50.57', + port: 8096 + } +] +[2024-06-21T07:02:10.041Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-21T07:02:10.042Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T06:12:08.666Z] error: Error calling https://10.0.50.50:9090/... +[2024-06-26T06:12:08.670Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T06:17:11.071Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-26T06:17:11.071Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T06:37:45.048Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-26T06:37:45.049Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T06:57:19.063Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-26T06:57:19.064Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T08:43:48.635Z] error: Error calling https://10.0.50.50:9090/... +[2024-06-26T08:43:48.636Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T08:48:13.073Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-26T08:48:13.074Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T09:59:28.048Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-26T09:59:28.048Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T11:08:28.654Z] error: Error calling https://10.0.50.50:9090/... +[2024-06-26T11:08:28.655Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T11:11:13.055Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-26T11:11:13.055Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T11:20:59.653Z] error: Error calling https://10.0.50.50:9090/... +[2024-06-26T11:20:59.654Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-26T23:57:08.648Z] error: Error calling https://10.0.50.50:9090/... +[2024-06-26T23:57:08.648Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-27T00:20:48.055Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-27T00:20:48.056Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-27T00:43:41.644Z] error: Error calling https://10.0.50.50:9090/... +[2024-06-27T00:43:41.645Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-27T01:25:01.065Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-27T01:25:01.065Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-27T01:45:05.077Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-27T01:45:05.078Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-27T01:58:38.041Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-27T01:58:38.042Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-27T02:29:18.641Z] error: Error calling https://10.0.50.50:9090/... +[2024-06-27T02:29:18.642Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-06-27T02:35:46.044Z] error: Error calling https://10.250.50.50:9090/... +[2024-06-27T02:35:46.044Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-07-23T02:38:47.654Z] error: Error calling https://10.0.50.50:9090/... +[2024-07-23T02:38:47.656Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-07-23T23:26:23.639Z] error: Error calling https://10.0.50.50:9090/... +[2024-07-23T23:26:23.640Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-07-23T23:36:28.051Z] error: Error calling https://10.250.50.50:9090/... +[2024-07-23T23:36:28.052Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-07-24T03:01:31.048Z] error: Error calling https://10.250.50.50:9090/... +[2024-07-24T03:01:31.049Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-07-24T03:06:32.053Z] error: Error calling https://10.250.50.50:9090/... +[2024-07-24T03:06:32.054Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-07-24T03:11:33.073Z] error: Error calling https://10.250.50.50:9090/... +[2024-07-24T03:11:33.074Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-07-24T03:16:34.053Z] error: Error calling https://10.250.50.50:9090/... +[2024-07-24T03:16:34.054Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-07-24T04:43:54.051Z] error: Error calling https://10.250.50.50:9090/... +[2024-07-24T04:43:54.052Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-07-24T05:08:24.639Z] error: Error calling https://10.0.50.50:9090/... +[2024-07-24T05:08:24.639Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-08-15T01:48:59.048Z] error: Error calling https://10.250.50.50:9090/... +[2024-08-15T01:48:59.049Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-08-15T01:59:01.074Z] error: Error calling https://10.250.50.50:9090/... +[2024-08-15T01:59:01.075Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-08-15T02:10:28.636Z] error: Error calling https://10.0.50.50:9090/... +[2024-08-15T02:10:28.636Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-08-15T02:22:36.059Z] error: Error calling https://10.250.50.50:9090/... +[2024-08-15T02:22:36.060Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-08-15T02:42:10.052Z] error: Error calling https://10.250.50.50:9090/... +[2024-08-15T02:42:10.053Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-10-29T23:16:26.464Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:26.524Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:26.550Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:26.585Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:26.671Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:27.699Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:28.723Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:29.715Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:29.716Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:33.971Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:33.972Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:33.973Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-10-29T23:16:33.977Z] error: Error getting services from Docker server 'nh3-pfi-docker': Error: connect ENETUNREACH 10.100.50.40:2375 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -101, + code: 'ENETUNREACH', + syscall: 'connect', + address: '10.100.50.40', + port: 2375 +} +[2024-11-08T01:57:40.454Z] error: Error calling http://10.0.90.125/... +[2024-11-08T01:57:40.455Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2024-11-08T02:03:00.437Z] error: Error calling http://10.0.90.125/... +[2024-11-08T02:03:00.437Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2024-11-08T02:03:03.437Z] error: Error calling http://10.0.90.125/... +[2024-11-08T02:03:03.437Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2024-12-07T01:52:47.633Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-07T01:52:47.636Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-07T02:17:19.638Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-07T02:17:19.639Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-07T02:42:33.072Z] error: Error calling https://10.250.50.50:9090/... +[2024-12-07T02:42:33.072Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-07T03:22:12.038Z] error: Error calling https://10.250.50.50:9090/... +[2024-12-07T03:22:12.039Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-07T03:44:47.064Z] error: Error calling https://10.250.50.50:9090/... +[2024-12-07T03:44:47.067Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-07T03:51:55.623Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-07T03:51:55.623Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-07T04:20:57.630Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-07T04:20:57.631Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-07T04:33:58.056Z] error: Error calling https://10.250.50.50:9090/... +[2024-12-07T04:33:58.057Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-16T19:02:38.631Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-16T19:02:38.632Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-16T19:20:10.634Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-16T19:20:10.635Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-16T19:32:21.064Z] error: Error calling https://10.250.50.50:9090/... +[2024-12-16T19:32:21.065Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-16T20:40:19.642Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-16T20:40:19.643Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-16T21:27:55.644Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-16T21:27:55.645Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-16T22:41:06.640Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-16T22:41:06.641Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-16T23:12:40.633Z] error: Error calling https://10.0.50.50:9090/... +[2024-12-16T23:12:40.634Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2024-12-27T19:23:42.020Z] error: Error calling http://10.0.90.125/... +[2024-12-27T19:23:42.021Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2024-12-27T20:01:59.186Z] error: Error calling http://10.0.90.125/... +[2024-12-27T20:01:59.186Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2024-12-27T20:22:08.198Z] error: Error calling http://10.0.90.125/... +[2024-12-27T20:22:08.198Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2024-12-27T20:22:11.198Z] error: Error calling http://10.0.90.125/... +[2024-12-27T20:22:11.198Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2024-12-30T06:46:44.784Z] error: Error calling http://10.0.90.125/... +[2024-12-30T06:46:44.786Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2024-12-30T06:46:47.779Z] error: Error calling http://10.0.90.125/... +[2024-12-30T06:46:47.779Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2024-12-31T21:14:40.292Z] error: undefined +[2025-01-16T21:34:14.194Z] error: Error calling http://10.0.90.125/... +[2025-01-16T21:34:14.196Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-01-26T04:44:35.626Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T04:44:35.627Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T05:22:37.660Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T05:22:37.661Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T06:08:42.654Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T06:08:42.655Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T06:33:01.062Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T06:33:01.063Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T06:43:45.637Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T06:43:45.638Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T06:52:05.041Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T06:52:05.042Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T07:21:48.629Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T07:21:48.630Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T07:23:12.065Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T07:23:12.065Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T08:09:52.640Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T08:09:52.641Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T08:12:22.045Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T08:12:22.045Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T08:42:28.053Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T08:42:28.054Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T08:53:00.054Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T08:53:00.055Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T08:58:01.043Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T08:58:01.043Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T09:08:33.068Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T09:08:33.069Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T10:06:32.637Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T10:06:32.638Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T10:23:18.075Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T10:23:18.076Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T10:26:19.063Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T10:26:19.064Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T10:39:05.628Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T10:39:05.628Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T10:48:54.045Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T10:48:54.045Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T10:53:55.049Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T10:53:55.049Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T12:18:13.654Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T12:18:13.655Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T12:23:43.067Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T12:23:43.068Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T12:33:45.058Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T12:33:45.059Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T12:44:15.633Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T12:44:15.633Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T13:31:27.041Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T13:31:27.041Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T14:12:53.646Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T14:12:53.646Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T15:46:01.628Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T15:46:01.629Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T16:06:01.066Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T16:06:01.067Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T16:46:05.629Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T16:46:05.630Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T17:01:43.054Z] error: Error calling https://10.250.50.50:9090/... +[2025-01-26T17:01:43.055Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-01-26T17:32:39.645Z] error: Error calling https://10.0.50.50:9090/... +[2025-01-26T17:32:39.646Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-04T22:14:19.800Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.003Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.004Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.038Z] error: Failed to load services.yaml, please check for errors +[2025-02-04T22:14:22.038Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.079Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.115Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.167Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.168Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.175Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.185Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.189Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.196Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.201Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.201Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.220Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.225Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.238Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.239Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.255Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.256Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.264Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.320Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.350Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.378Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.378Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.411Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.411Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.416Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.416Z] error: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:22.425Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.447Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.448Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.448Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.448Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.449Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.460Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.483Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.483Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:22.537Z] error: Failed to load services.yaml, please check for errors +[2025-02-04T22:14:22.537Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:23.018Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:23.018Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:23.024Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:23.040Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:23.051Z] error: Failed to load services.yaml, please check for errors +[2025-02-04T22:14:23.051Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | +[2025-02-04T22:14:23.052Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:23.052Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:14:23.057Z] error: YAMLException: bad indentation of a mapping entry (146:20) + + 143 | - AllTalk: + 144 | href: http://10.250.50.51:7852 + 145 | siteMonitor: http://10.250.50.51:7852 + 146 | description: AllTalk Chat AI (AnaML port 7852) +--------------------------^ + 147 | icon: mdi-text-to-speech + 148 | + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2272:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) +[2025-02-04T22:18:34.972Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.001Z] error: Failed to load services.yaml, please check for errors +[2025-02-04T22:18:35.001Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.002Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.008Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.136Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.137Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.156Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.170Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.171Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.191Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.279Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.311Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.315Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.320Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.346Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.347Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.347Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.350Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.377Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.377Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.378Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:35.380Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.391Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.413Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.413Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.415Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.416Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.420Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.440Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.441Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.450Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.450Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.451Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.469Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.475Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.485Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.485Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.486Z] error: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:35.558Z] error: Failed to load services.yaml, please check for errors +[2025-02-04T22:18:35.558Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:36.016Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:36.030Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:36.035Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:36.046Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:36.057Z] error: Failed to load services.yaml, please check for errors +[2025-02-04T22:18:36.057Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... +[2025-02-04T22:18:36.059Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:36.064Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-04T22:18:36.075Z] error: YAMLException: bad indentation of a sequence entry (149:11) + + 146 | description: AllTalk TTS (AnaML por ... + 147 | icon: mdi-text-to-speech + 148 | - ComfyUI + 149 | href: http://10.250.50.51:8188 +-----------------^ + 150 | siteMonitor: http://10.250.50.51:8188 + 151 | description: ComfyUI Image/Video AI ... + at generateError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1273:10) + at throwError (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:1277:9) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2105:7) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2562:45) + at readBlockMapping (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2254:11) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2531:12) + at readBlockSequence (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2098:5) + at composeNode (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2530:12) + at readDocument (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2715:3) + at loadDocuments (file:///app/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs:2778:5) +[2025-02-12T00:18:52.042Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T00:18:52.043Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T01:08:57.640Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T01:08:57.641Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T01:17:28.626Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T01:17:28.626Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T01:50:03.650Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T01:50:03.651Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T01:58:34.649Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T01:58:34.650Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T03:27:45.638Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T03:27:45.639Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T04:05:50.651Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T04:05:50.651Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T04:52:39.042Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T04:52:39.043Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T04:57:26.639Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T04:57:26.639Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T05:05:57.628Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T05:05:57.628Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T05:53:33.631Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T05:53:33.632Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T06:59:12.640Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T06:59:12.640Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T07:14:47.043Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T07:14:47.044Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T08:00:59.040Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T08:00:59.041Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T08:56:56.644Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T08:56:56.644Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T09:14:28.624Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T09:14:28.624Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T09:22:59.624Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T09:22:59.625Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T09:44:02.635Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T09:44:02.636Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T09:55:34.640Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T09:55:34.640Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T11:46:18.643Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T11:46:18.644Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T11:53:19.639Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T11:53:19.639Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T12:53:26.638Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T12:53:26.639Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T14:38:13.072Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T14:38:13.073Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T15:03:42.633Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T15:03:42.634Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T15:42:00.070Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T15:42:00.070Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T15:54:34.058Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T15:54:34.059Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T16:09:50.651Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T16:09:50.651Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T17:56:19.575Z] error: Error calling http://10.250.50.51:8880/web... +[2025-02-12T17:56:19.575Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8880 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8880 + } +] +[2025-02-12T17:56:19.577Z] error: Error calling http://10.250.50.51:8000/... +[2025-02-12T17:56:19.577Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8000 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8000 + } +] +[2025-02-12T18:00:39.041Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T18:00:39.042Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T18:28:48.065Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T18:28:48.066Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T18:59:18.406Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T18:59:18.406Z] error: [ + 500, + Error: read ECONNRESET + at TCP.onStreamRead (node:internal/stream_base_commons:217:20) { + errno: -104, + code: 'ECONNRESET', + syscall: 'read' + } +] +[2025-02-12T18:59:18.419Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T18:59:18.419Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T18:59:48.541Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T18:59:48.541Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T18:59:48.555Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T18:59:48.555Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T19:12:19.634Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T19:12:19.635Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T19:14:32.042Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T19:14:32.042Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T20:12:20.052Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T20:12:20.053Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T20:32:16.604Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T20:32:16.604Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T20:32:16.617Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T20:32:16.617Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T20:32:56.038Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T20:32:56.038Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T20:38:34.627Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T20:38:34.628Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T20:46:00.061Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-12T20:46:00.061Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T22:01:34.654Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:01:34.655Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:01:34.667Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:01:34.667Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:04:35.358Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:04:35.358Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:04:35.372Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:04:35.372Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:05:35.498Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:05:35.498Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:05:35.512Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:05:35.512Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:06:05.568Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:06:05.568Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:06:05.579Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:06:05.579Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:19:07.606Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:19:07.607Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:19:07.622Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:19:07.622Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:20:07.812Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:20:07.812Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:20:07.820Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:20:07.820Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:20:37.876Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:20:37.876Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:20:37.889Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:20:37.890Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:38:11.070Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:38:11.071Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T22:38:11.083Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T22:38:11.083Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T23:10:17.264Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T23:10:17.265Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T23:10:17.278Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T23:10:17.278Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T23:10:54.628Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T23:10:54.628Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T23:15:50.607Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T23:15:50.607Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T23:15:50.621Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-12T23:15:50.621Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-12T23:24:56.636Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T23:24:56.637Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-12T23:51:59.645Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-12T23:51:59.645Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T00:30:34.630Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T00:30:34.631Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T01:05:38.631Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T01:05:38.631Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T08:37:31.644Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T08:37:31.645Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T10:35:44.634Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T10:35:44.634Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T12:08:54.654Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T12:08:54.654Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T14:51:13.031Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-13T14:51:13.031Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T16:43:24.655Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T16:43:24.655Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T17:37:00.649Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T17:37:00.650Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T18:01:33.633Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T18:01:33.634Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T18:15:47.163Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-13T18:15:47.164Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-13T18:15:47.176Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-13T18:15:47.176Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-13T18:17:47.457Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-13T18:17:47.457Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-13T18:17:47.470Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-13T18:17:47.470Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-13T22:11:07.634Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T22:11:07.635Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-13T23:04:13.640Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-13T23:04:13.640Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T00:35:54.653Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T00:35:54.654Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T01:09:58.658Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T01:09:58.658Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T01:25:30.629Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T01:25:30.629Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T01:35:37.072Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-14T01:35:37.073Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T02:37:16.648Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T02:37:16.648Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T05:28:25.656Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T05:28:25.656Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T06:11:30.633Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T06:11:30.634Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T06:20:01.652Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T06:20:01.653Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T06:58:34.059Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-14T06:58:34.060Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T07:52:12.635Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T07:52:12.636Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T11:29:08.656Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T11:29:08.656Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T13:31:22.626Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T13:31:22.626Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T13:39:53.644Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T13:39:53.644Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T13:48:24.642Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T13:48:24.642Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T14:14:57.646Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T14:14:57.647Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T15:10:04.657Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T15:10:04.658Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T16:53:46.629Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T16:53:46.629Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-14T17:28:50.634Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-14T17:28:50.635Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-15T02:24:06.074Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-15T02:24:06.074Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-15T04:14:35.638Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-15T04:14:35.639Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-15T04:34:36.649Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-15T04:34:36.649Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-15T05:52:12.636Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-15T05:52:12.637Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-15T06:20:26.060Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-15T06:20:26.061Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-15T06:48:02.063Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-15T06:48:02.064Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-15T07:07:06.054Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-15T07:07:06.054Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T01:06:36.635Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T01:06:36.635Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T01:14:45.628Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T01:14:45.628Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T01:34:21.071Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T01:34:21.071Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T02:08:18.651Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T02:08:18.652Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T02:26:19.629Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T02:26:19.629Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T02:34:34.043Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T02:34:34.044Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T03:28:44.063Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T03:28:44.064Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T03:58:20.057Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T03:58:20.057Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T04:43:28.625Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T04:43:28.625Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T06:28:20.042Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T06:28:20.043Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T07:28:32.057Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T07:28:32.058Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T08:31:45.623Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T08:31:45.624Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T09:33:26.048Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T09:33:26.049Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T10:29:09.046Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T10:29:09.047Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T10:34:10.074Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T10:34:10.074Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T10:37:56.631Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T10:37:56.631Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T10:39:11.040Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T10:39:11.041Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T10:47:43.044Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T10:47:43.044Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T11:14:48.059Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T11:14:48.059Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T11:57:03.639Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T11:57:03.640Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T12:55:37.654Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T12:55:37.655Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T14:55:14.645Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T14:55:14.645Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T16:23:48.051Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-16T16:23:48.052Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-16T17:50:26.648Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-16T17:50:26.648Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-18T21:08:24.167Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:08:24.168Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T21:08:24.177Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:08:24.177Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T21:12:58.296Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:12:58.297Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T21:12:58.309Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:12:58.309Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T21:19:20.204Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:19:20.204Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T21:19:20.221Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:19:20.222Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T21:19:25.927Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:19:25.928Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T21:19:25.936Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:19:25.936Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T21:22:03.047Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:22:03.047Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T21:22:03.057Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T21:22:03.057Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T22:16:42.862Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T22:16:42.863Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T22:16:42.874Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T22:16:42.874Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T22:16:57.564Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T22:16:57.564Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T22:16:57.572Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T22:16:57.572Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T22:17:46.520Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T22:17:46.520Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-18T22:17:46.534Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-18T22:17:46.534Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:25:38.073Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:25:38.073Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:25:38.091Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:25:38.092Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:27:53.497Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:27:53.497Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:27:53.509Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:27:53.509Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:29:37.769Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:29:37.769Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:29:37.781Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:29:37.781Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:32:18.431Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:32:18.431Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:32:18.445Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:32:18.445Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:38:08.193Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:38:08.193Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:38:08.207Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:38:08.207Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:38:13.289Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:38:13.289Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:38:13.302Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:38:13.302Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:44:45.203Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:44:45.203Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:44:45.219Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:44:45.219Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:45:30.537Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:45:30.537Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:45:30.551Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:45:30.551Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:45:42.957Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:45:42.957Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:45:42.969Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:45:42.969Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:45:45.569Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:45:45.569Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:45:45.579Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:45:45.579Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:55:23.884Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:55:23.884Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T00:55:23.894Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T00:55:23.894Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T05:22:57.435Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T05:22:57.435Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T05:22:57.451Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T05:22:57.451Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T05:59:28.403Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T05:59:28.403Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T05:59:28.410Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T05:59:28.410Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T06:27:34.040Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T06:27:34.041Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T06:27:34.052Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T06:27:34.052Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T06:28:23.333Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T06:28:23.333Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T06:28:23.353Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T06:28:23.354Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T18:20:01.278Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T18:20:01.278Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T18:20:01.291Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T18:20:01.292Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T18:20:04.326Z] error: Error calling http://10.0.90.125/... +[2025-02-19T18:20:04.326Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-02-19T20:19:33.891Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:19:33.891Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T20:19:33.903Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:19:33.903Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T20:32:21.359Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:32:21.359Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T20:32:21.373Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:32:21.373Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T20:32:50.975Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:32:50.976Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T20:32:50.989Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:32:50.989Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T20:33:04.149Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:33:04.149Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T20:33:04.161Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:33:04.161Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T20:33:11.015Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:33:11.016Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T20:33:11.027Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T20:33:11.027Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T21:28:12.471Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T21:28:12.471Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-19T21:28:12.480Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-19T21:28:12.480Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T06:16:57.776Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T06:16:57.776Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T06:16:57.788Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T06:16:57.788Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T08:23:06.513Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T08:23:06.513Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T08:23:06.531Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T08:23:06.531Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T08:28:42.569Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T08:28:42.570Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T08:28:42.583Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T08:28:42.583Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T08:31:33.477Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T08:31:33.477Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T08:31:33.491Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T08:31:33.491Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T08:36:08.647Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T08:36:08.648Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T08:36:08.657Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T08:36:08.657Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T16:01:56.564Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T16:01:56.564Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T16:01:56.582Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T16:01:56.582Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T16:02:06.214Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T16:02:06.214Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T16:02:06.227Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T16:02:06.227Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T16:02:26.232Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T16:02:26.232Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T16:02:26.245Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T16:02:26.246Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T18:52:31.445Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T18:52:31.445Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T18:52:31.457Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T18:52:31.457Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T19:00:07.015Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T19:00:07.015Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T19:00:07.029Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T19:00:07.029Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T19:09:33.577Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T19:09:33.577Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T19:09:33.589Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T19:09:33.589Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T23:23:19.136Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T23:23:19.137Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T23:23:19.151Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T23:23:19.151Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T23:24:00.017Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T23:24:00.017Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-20T23:24:00.025Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-20T23:24:00.025Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:04:56.407Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:04:56.407Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:04:56.421Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:04:56.421Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:05:25.735Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:05:25.735Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:05:25.747Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:05:25.747Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:05:55.867Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:05:55.867Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:05:55.879Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:05:55.879Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:06:25.937Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:06:25.937Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:06:25.949Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:06:25.949Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:06:56.001Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:06:56.001Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:06:56.026Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:06:56.026Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:07:26.073Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:07:26.073Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:07:26.087Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:07:26.087Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:07:56.149Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:07:56.149Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:07:56.159Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:07:56.159Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:08:26.223Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:08:26.223Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:08:26.236Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:08:26.236Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:08:56.296Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:08:56.296Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:08:56.310Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:08:56.310Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:09:26.357Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:09:26.357Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:09:26.370Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:09:26.370Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:09:56.426Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:09:56.426Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:09:56.438Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:09:56.438Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:10:26.487Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:10:26.487Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:10:26.500Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:10:26.500Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:10:56.547Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:10:56.547Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:10:56.560Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:10:56.560Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:11:26.609Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:11:26.609Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:11:26.622Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:11:26.622Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:11:56.748Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:11:56.748Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:11:56.763Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:11:56.764Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:12:26.871Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:12:26.871Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:12:26.884Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:12:26.884Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:12:57.049Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:12:57.049Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:12:57.062Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:12:57.062Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:13:27.166Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:13:27.166Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:13:27.180Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:13:27.180Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:13:57.232Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:13:57.232Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:13:57.248Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:13:57.248Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:14:27.308Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:14:27.308Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:14:27.324Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:14:27.324Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:14:57.590Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:14:57.590Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:14:57.602Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:14:57.603Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:15:27.650Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:15:27.650Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:15:27.662Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:15:27.662Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:15:57.710Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:15:57.710Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:15:57.720Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:15:57.720Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:16:27.778Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:16:27.778Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:16:27.788Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:16:27.788Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:16:57.836Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:16:57.836Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:16:57.852Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:16:57.852Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:17:27.904Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:17:27.904Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:17:27.918Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:17:27.918Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:17:57.956Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:17:57.956Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:17:57.970Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:17:57.970Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:18:28.025Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:18:28.025Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:18:28.039Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:18:28.039Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:18:58.097Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:18:58.097Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:18:58.111Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:18:58.111Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:19:28.174Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:19:28.174Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:19:28.187Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:19:28.187Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:19:58.289Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:19:58.289Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:19:58.299Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:19:58.299Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:20:28.347Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:20:28.347Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:20:28.363Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:20:28.363Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:20:58.415Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:20:58.415Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:20:58.427Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:20:58.427Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:21:28.483Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:21:28.484Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:21:28.497Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:21:28.497Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:21:58.553Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:21:58.553Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:21:58.565Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:21:58.565Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:22:28.613Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:22:28.614Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:22:28.627Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:22:28.627Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:22:58.673Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:22:58.673Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:22:58.687Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:22:58.687Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:23:28.743Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:23:28.744Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:23:28.759Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:23:28.759Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:23:58.809Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:23:58.809Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:23:58.821Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:23:58.821Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:24:28.867Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:24:28.867Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:24:28.881Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:24:28.881Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:24:58.936Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:24:58.936Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:24:58.949Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:24:58.949Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:25:29.003Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:25:29.003Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:25:29.017Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:25:29.017Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:25:59.069Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:25:59.069Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:25:59.083Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:25:59.083Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:26:29.145Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:26:29.145Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:26:29.153Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:26:29.153Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:26:59.207Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:26:59.207Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:26:59.215Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:26:59.215Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:27:29.269Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:27:29.269Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:27:29.281Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:27:29.281Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:27:59.343Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:27:59.343Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:27:59.363Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:27:59.363Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:28:29.415Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:28:29.416Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:28:29.429Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:28:29.429Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:28:59.485Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:28:59.485Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:28:59.501Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:28:59.501Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:29:29.568Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:29:29.568Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:29:29.581Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:29:29.581Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:29:59.639Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:29:59.639Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:29:59.651Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:29:59.651Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:30:29.713Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:30:29.713Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:30:29.727Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:30:29.727Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:30:59.781Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:30:59.781Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:30:59.795Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:30:59.795Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:31:29.853Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:31:29.853Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:31:29.867Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:31:29.867Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:31:59.923Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:31:59.923Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:31:59.937Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:31:59.937Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:32:29.997Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:32:29.997Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:32:30.011Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:32:30.011Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:33:00.063Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:33:00.063Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:33:00.073Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:33:00.073Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:33:30.139Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:33:30.139Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:33:30.151Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:33:30.151Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:34:00.203Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:34:00.203Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:34:00.217Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:34:00.217Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:34:30.269Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:34:30.269Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:34:30.283Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:34:30.284Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:35:00.343Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:35:00.343Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:35:00.357Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:35:00.357Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:35:30.421Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:35:30.421Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:35:30.435Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:35:30.435Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:36:00.523Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:36:00.523Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:36:00.537Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:36:00.537Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:36:30.589Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:36:30.589Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:36:30.603Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:36:30.603Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:37:00.663Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:37:00.663Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:37:00.677Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:37:00.677Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:37:30.739Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:37:30.739Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:37:30.753Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:37:30.753Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:38:00.809Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:38:00.809Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:38:00.825Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:38:00.825Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:38:30.885Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:38:30.885Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:38:30.899Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:38:30.899Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:39:00.959Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:39:00.959Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:39:00.973Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:39:00.974Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:39:31.060Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:39:31.060Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:39:31.073Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:39:31.073Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:40:01.129Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:40:01.129Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:40:01.141Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:40:01.141Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:40:31.251Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:40:31.251Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:40:31.267Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:40:31.267Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:41:01.319Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:41:01.319Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:41:01.334Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:41:01.334Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:41:31.396Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:41:31.396Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:41:31.409Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:41:31.409Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:42:01.463Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:42:01.463Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:42:01.477Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:42:01.477Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:42:31.541Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:42:31.541Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:42:31.555Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:42:31.555Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:43:01.615Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:43:01.615Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:43:01.629Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:43:01.629Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:43:31.689Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:43:31.689Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:43:31.703Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:43:31.703Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:44:01.757Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:44:01.757Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:44:01.771Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:44:01.771Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:44:31.834Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:44:31.834Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:44:31.847Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:44:31.847Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:45:01.913Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:45:01.913Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:45:01.927Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:45:01.927Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:45:31.977Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:45:31.977Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:45:31.991Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:45:31.991Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:46:02.054Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:46:02.054Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:46:02.067Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:46:02.067Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:46:32.133Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:46:32.135Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:46:32.149Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:46:32.149Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:47:02.207Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:47:02.208Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:47:02.221Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:47:02.221Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:47:32.279Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:47:32.279Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:47:32.293Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:47:32.293Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:48:02.355Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:48:02.355Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:48:02.369Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:48:02.369Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:48:32.423Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:48:32.423Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:48:32.437Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:48:32.437Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:49:02.493Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:49:02.493Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:49:02.507Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:49:02.507Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:49:32.565Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:49:32.565Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:49:32.579Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:49:32.579Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:50:02.639Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:50:02.639Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:50:02.653Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:50:02.653Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:50:32.713Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:50:32.713Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:50:32.727Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:50:32.727Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:51:02.778Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:51:02.778Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:51:02.791Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:51:02.791Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:51:32.841Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:51:32.841Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:51:32.855Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:51:32.855Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:52:02.907Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:52:02.907Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:52:02.919Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:52:02.919Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:52:32.977Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:52:32.977Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:52:32.991Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:52:32.991Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:53:03.053Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:53:03.053Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:53:03.067Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:53:03.067Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:53:33.129Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:53:33.129Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:53:33.143Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:53:33.143Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:54:03.203Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:54:03.204Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:54:03.219Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:54:03.219Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:54:33.283Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:54:33.283Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:54:33.297Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:54:33.297Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:55:03.353Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:55:03.353Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:55:03.367Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:55:03.367Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:55:33.425Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:55:33.425Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:55:33.435Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:55:33.435Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:56:03.493Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:56:03.494Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:56:03.507Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:56:03.507Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:56:33.563Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:56:33.563Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:56:33.577Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:56:33.577Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:57:03.639Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:57:03.640Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:57:03.653Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:57:03.653Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:57:33.713Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:57:33.714Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:57:33.727Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:57:33.727Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:58:03.779Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:58:03.780Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:58:03.799Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:58:03.799Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:58:33.857Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:58:33.857Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:58:33.871Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:58:33.871Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:59:03.923Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:59:03.923Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:59:03.937Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:59:03.937Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:59:33.997Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:59:33.997Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T00:59:34.011Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T00:59:34.011Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:00:04.069Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:00:04.069Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:00:04.083Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:00:04.083Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:00:34.143Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:00:34.143Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:00:34.157Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:00:34.157Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:01:04.223Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:01:04.223Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:01:04.237Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:01:04.237Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:01:34.293Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:01:34.293Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:01:34.307Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:01:34.307Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:02:04.361Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:02:04.361Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:02:04.375Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:02:04.375Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:02:34.437Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:02:34.437Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:02:34.451Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:02:34.451Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:03:04.513Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:03:04.513Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:03:04.527Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:03:04.527Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:03:34.583Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:03:34.583Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:03:34.597Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:03:34.597Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:04:04.659Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:04:04.659Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:04:04.673Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:04:04.673Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:04:34.731Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:04:34.731Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:04:34.745Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:04:34.745Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:05:04.809Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:05:04.809Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:05:04.822Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:05:04.823Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:05:34.889Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:05:34.889Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:05:34.903Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:05:34.903Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:06:04.965Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:06:04.965Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:06:04.978Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:06:04.979Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:06:35.095Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:06:35.095Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:06:35.109Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:06:35.109Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:07:05.211Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:07:05.211Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:07:05.223Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:07:05.223Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:07:35.291Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:07:35.291Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:07:35.305Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:07:35.305Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:08:05.379Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:08:05.379Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:08:05.393Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:08:05.393Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:08:35.453Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:08:35.453Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:08:35.467Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:08:35.467Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:09:05.517Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:09:05.517Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:09:05.531Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:09:05.531Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:09:35.593Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:09:35.593Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:09:35.607Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:09:35.607Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:10:05.669Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:10:05.669Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:10:05.683Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:10:05.683Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:10:35.739Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:10:35.739Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:10:35.751Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:10:35.751Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:11:05.849Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:11:05.850Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:11:05.863Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:11:05.863Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:11:35.917Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:11:35.917Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:11:35.931Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:11:35.931Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:12:06.017Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:12:06.017Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:12:06.029Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:12:06.029Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:12:36.113Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:12:36.113Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:12:36.127Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:12:36.127Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:13:06.377Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:13:06.377Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:13:06.391Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:13:06.391Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:13:36.533Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:13:36.533Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:13:36.545Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:13:36.545Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:14:06.633Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:14:06.633Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:14:06.647Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:14:06.647Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:14:36.753Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:14:36.754Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:14:36.767Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:14:36.767Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:15:06.873Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:15:06.874Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:15:06.887Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:15:06.887Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:15:36.977Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:15:36.977Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:15:36.989Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:15:36.989Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:16:07.223Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:16:07.223Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:16:07.235Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:16:07.236Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:16:37.318Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:16:37.318Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:16:37.331Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:16:37.331Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:17:07.423Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:17:07.423Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:17:07.437Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:17:07.438Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:17:37.513Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:17:37.514Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:17:37.528Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:17:37.528Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:18:07.634Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:18:07.634Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:18:07.648Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:18:07.648Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:18:37.734Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:18:37.734Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:18:37.747Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:18:37.747Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:19:07.826Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:19:07.826Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:19:07.839Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:19:07.839Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:19:37.938Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:19:37.938Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:19:37.951Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:19:37.951Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:20:06.639Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T01:20:06.640Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T01:20:08.056Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:20:08.056Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:20:08.069Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:20:08.069Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:20:38.153Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:20:38.153Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:20:38.167Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:20:38.168Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:21:08.245Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:21:08.246Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:21:08.260Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:21:08.260Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:21:38.364Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:21:38.364Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:21:38.378Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:21:38.378Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:22:08.453Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:22:08.454Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:22:08.466Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:22:08.466Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:22:38.586Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:22:38.586Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:22:38.600Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:22:38.600Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:23:08.700Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:23:08.700Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:23:08.713Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:23:08.713Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:23:38.834Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:23:38.834Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:23:38.847Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:23:38.847Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:24:08.961Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:24:08.962Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:24:08.975Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:24:08.976Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:24:39.090Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:24:39.090Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:24:39.103Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:24:39.103Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:25:09.204Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:25:09.204Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:25:09.217Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:25:09.217Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:25:39.331Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:25:39.331Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:25:39.343Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:25:39.343Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:26:09.522Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:26:09.522Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:26:09.535Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:26:09.536Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:26:39.634Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:26:39.634Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:26:39.647Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:26:39.647Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:27:09.764Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:27:09.764Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:27:09.778Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:27:09.778Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:27:39.912Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:27:39.912Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:27:39.925Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:27:39.925Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:28:10.117Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:28:10.118Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:28:10.132Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:28:10.132Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:28:40.258Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:28:40.258Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:28:40.272Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:28:40.272Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:29:10.494Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:29:10.494Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:29:10.507Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:29:10.508Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:29:40.634Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:29:40.634Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:29:40.647Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:29:40.648Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:30:10.766Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:30:10.766Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:30:10.779Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:30:10.779Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:30:40.902Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:30:40.902Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:30:40.916Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:30:40.916Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:31:11.040Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:31:11.040Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:31:11.052Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:31:11.052Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:31:41.170Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:31:41.170Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:31:41.179Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:31:41.179Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:32:11.306Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:32:11.306Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:32:11.320Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:32:11.320Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:32:41.443Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:32:41.444Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:32:41.458Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:32:41.458Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:33:11.575Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:33:11.576Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:33:11.588Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:33:11.588Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:33:41.720Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:33:41.720Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:33:41.732Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:33:41.732Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:34:11.855Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:34:11.856Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:34:11.868Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:34:11.868Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:34:41.994Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:34:41.994Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:34:42.008Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:34:42.008Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:35:12.134Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:35:12.134Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:35:12.148Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:35:12.148Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:35:42.574Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:35:42.574Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:35:42.588Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:35:42.588Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:36:12.726Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:36:12.726Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:36:12.740Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:36:12.740Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:36:42.866Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:36:42.866Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:36:42.880Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:36:42.880Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:37:12.988Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:37:12.988Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:37:12.996Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:37:12.996Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:37:43.144Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:37:43.144Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:37:43.158Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:37:43.158Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:38:13.292Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:38:13.292Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:38:13.304Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:38:13.304Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:38:43.432Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:38:43.433Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:38:43.446Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:38:43.446Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:39:13.584Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:39:13.584Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:39:13.598Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:39:13.598Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:39:43.734Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:39:43.734Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:39:43.748Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:39:43.748Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:40:13.880Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:40:13.880Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:40:13.892Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:40:13.892Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:40:44.028Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:40:44.028Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:40:44.040Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:40:44.040Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:41:14.150Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:41:14.150Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:41:14.163Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:41:14.164Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:41:44.298Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:41:44.298Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:41:44.312Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:41:44.312Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:42:14.430Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:42:14.430Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:42:14.443Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:42:14.443Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:42:44.572Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:42:44.572Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:42:44.585Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:42:44.585Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:43:14.709Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:43:14.710Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:43:14.724Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:43:14.724Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:43:44.838Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:43:44.838Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:43:44.851Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:43:44.851Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:44:14.984Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:44:14.984Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:44:14.997Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:44:14.998Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:44:45.123Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:44:45.123Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:44:45.135Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:44:45.135Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:45:15.247Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:45:15.248Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:45:15.262Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:45:15.262Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:45:45.513Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:45:45.513Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:45:45.527Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:45:45.528Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:46:15.637Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:46:15.638Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:46:15.655Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:46:15.655Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:46:45.780Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:46:45.780Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:46:45.791Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:46:45.791Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:47:15.877Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:47:15.877Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:47:15.891Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:47:15.891Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:47:46.002Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:47:46.002Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:47:46.013Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:47:46.013Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:48:16.124Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:48:16.124Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:48:16.137Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:48:16.137Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:48:46.224Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:48:46.224Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:48:46.237Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:48:46.237Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:49:16.327Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:49:16.327Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:49:16.341Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:49:16.341Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:49:46.437Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:49:46.437Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:49:46.453Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:49:46.454Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:50:16.571Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:50:16.571Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:50:16.585Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:50:16.585Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:50:46.697Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:50:46.697Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:50:46.711Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:50:46.711Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:51:16.807Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:51:16.807Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:51:16.819Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:51:16.819Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:51:46.923Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:51:46.923Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:51:46.935Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:51:46.935Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:52:17.029Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:52:17.030Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:52:17.043Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:52:17.043Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:52:47.151Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:52:47.151Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:52:47.165Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:52:47.165Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:53:17.297Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:53:17.297Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:53:17.311Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:53:17.311Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:53:47.423Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:53:47.423Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:53:47.437Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:53:47.437Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:54:17.553Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:54:17.553Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:54:17.567Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:54:17.567Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:54:47.689Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:54:47.689Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:54:47.703Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:54:47.703Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:55:17.816Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:55:17.816Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:55:17.830Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:55:17.830Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:55:47.953Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:55:47.953Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:55:47.968Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:55:47.968Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:56:18.097Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:56:18.097Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:56:18.110Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:56:18.110Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:56:48.378Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:56:48.379Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:56:48.392Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:56:48.392Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:57:18.528Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:57:18.529Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:57:18.542Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:57:18.542Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:57:48.663Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:57:48.663Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:57:48.676Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:57:48.676Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:58:18.803Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:58:18.803Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:58:18.822Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:58:18.822Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:58:48.934Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:58:48.934Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:58:48.946Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:58:48.946Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:59:19.058Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:59:19.059Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:59:19.072Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:59:19.072Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:59:49.164Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:59:49.164Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T01:59:49.178Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T01:59:49.178Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:00:19.290Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:00:19.291Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:00:19.304Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:00:19.304Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:00:49.405Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:00:49.405Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:00:49.412Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:00:49.413Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:01:19.518Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:01:19.518Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:01:19.530Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:01:19.531Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:01:49.738Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:01:49.739Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:01:49.752Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:01:49.752Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:02:19.845Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:02:19.845Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:02:19.856Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:02:19.856Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:02:49.962Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:02:49.963Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:02:49.974Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:02:49.974Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:03:20.100Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:03:20.100Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:03:20.112Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:03:20.112Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:03:50.192Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:03:50.192Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:03:50.206Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:03:50.207Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:04:20.306Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:04:20.306Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:04:20.316Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:04:20.316Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:04:50.408Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:04:50.409Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:04:50.422Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:04:50.422Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:05:20.542Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:05:20.542Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:05:20.556Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:05:20.556Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:05:50.649Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:05:50.649Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:05:50.662Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:05:50.662Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:06:20.776Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:06:20.776Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:06:20.788Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:06:20.789Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:06:50.886Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:06:50.886Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:06:50.900Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:06:50.900Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:07:20.993Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:07:20.993Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:07:21.006Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:07:21.006Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:07:51.124Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:07:51.124Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:07:51.140Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:07:51.140Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:08:21.252Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:08:21.252Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:08:21.264Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:08:21.264Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:08:51.355Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:08:51.355Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:08:51.368Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:08:51.368Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:09:21.490Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:09:21.491Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:09:21.505Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:09:21.505Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:09:51.602Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:09:51.602Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:09:51.616Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:09:51.616Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:10:21.703Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:10:21.703Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:10:21.716Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:10:21.716Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:10:51.798Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:10:51.798Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:10:51.812Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:10:51.812Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:11:21.982Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:11:21.982Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:11:21.996Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:11:21.996Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:11:52.088Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:11:52.088Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:11:52.102Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:11:52.103Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:12:22.226Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:12:22.226Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:12:22.238Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:12:22.238Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:12:52.339Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:12:52.339Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:12:52.352Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:12:52.352Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:13:22.698Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:13:22.699Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:13:22.714Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:13:22.714Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:13:52.842Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:13:52.843Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:13:52.856Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:13:52.856Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:14:22.948Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:14:22.948Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:14:22.957Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:14:22.957Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:14:53.062Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:14:53.062Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:14:53.073Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:14:53.073Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:15:23.174Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:15:23.174Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:15:23.187Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:15:23.187Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:15:53.292Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:15:53.292Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:15:53.305Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:15:53.305Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:16:23.419Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:16:23.419Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:16:23.433Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:16:23.433Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:16:53.563Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:16:53.564Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:16:53.578Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:16:53.578Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:17:23.699Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:17:23.699Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:17:23.713Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:17:23.713Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:17:53.823Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:17:53.824Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:17:53.837Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:17:53.837Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:18:23.953Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:18:23.953Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:18:23.967Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:18:23.968Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:18:54.071Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:18:54.071Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:18:54.085Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:18:54.085Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:19:24.187Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:19:24.187Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:19:24.199Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:19:24.199Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:19:54.461Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:19:54.461Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:19:54.474Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:19:54.474Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:20:24.584Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:20:24.584Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:20:24.591Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:20:24.592Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:20:54.693Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:20:54.693Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:20:54.705Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:20:54.705Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:21:24.807Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:21:24.807Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:21:24.819Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:21:24.819Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:21:54.917Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:21:54.917Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:21:54.929Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:21:54.929Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:22:25.021Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:22:25.021Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:22:25.031Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:22:25.031Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:22:55.133Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:22:55.133Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:22:55.147Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:22:55.147Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:23:25.263Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:23:25.263Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:23:25.277Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:23:25.277Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:23:55.397Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:23:55.398Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:23:55.411Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:23:55.411Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:24:25.503Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:24:25.503Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:24:25.517Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:24:25.517Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:24:55.633Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:24:55.633Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:24:55.645Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:24:55.645Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:25:25.751Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:25:25.752Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:25:25.765Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:25:25.765Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:25:55.891Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:25:55.891Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:25:55.903Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:25:55.903Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:26:26.015Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:26:26.015Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:26:26.027Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:26:26.027Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:26:56.097Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:26:56.097Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:26:56.111Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:26:56.111Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:27:26.209Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:27:26.209Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:27:26.223Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:27:26.223Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:27:56.307Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:27:56.307Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:27:56.321Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:27:56.321Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:28:26.427Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:28:26.427Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:28:26.441Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:28:26.441Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:28:56.545Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:28:56.545Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:28:56.561Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:28:56.561Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:29:26.653Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:29:26.653Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:29:26.667Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:29:26.667Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:29:56.803Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:29:56.803Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:29:56.815Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:29:56.815Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:30:26.905Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:30:26.905Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:30:26.917Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:30:26.917Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:30:57.033Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:30:57.033Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:30:57.047Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:30:57.047Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:31:27.131Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:31:27.131Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:31:27.147Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:31:27.147Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:31:57.239Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:31:57.239Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:31:57.251Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:31:57.251Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:32:27.347Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:32:27.347Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:32:27.361Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:32:27.361Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:32:57.452Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:32:57.452Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:32:57.465Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:32:57.465Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:33:27.581Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:33:27.581Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:33:27.595Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:33:27.595Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:33:57.719Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:33:57.719Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:33:57.733Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:33:57.733Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:34:27.815Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:34:27.815Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:34:27.829Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:34:27.829Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:34:57.923Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:34:57.923Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:34:57.937Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:34:57.937Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:35:28.071Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:35:28.071Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:35:28.085Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:35:28.085Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:35:58.191Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:35:58.192Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:35:58.203Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:35:58.203Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:36:28.291Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:36:28.291Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:36:28.305Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:36:28.305Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:36:58.407Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:36:58.407Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:36:58.415Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:36:58.415Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:37:28.511Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:37:28.511Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:37:28.525Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:37:28.525Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:37:58.713Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:37:58.713Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:37:58.725Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:37:58.725Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:38:28.805Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:38:28.805Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:38:28.813Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:38:28.813Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:38:58.901Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:38:58.901Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:38:58.915Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:38:58.915Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:39:28.997Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:39:28.997Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:39:29.011Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:39:29.011Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:39:59.075Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:39:59.075Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:39:59.089Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:39:59.089Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:40:29.155Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:40:29.155Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:40:29.167Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:40:29.167Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:40:59.247Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:40:59.247Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:40:59.261Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:40:59.261Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:41:29.333Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:41:29.333Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:41:29.347Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:41:29.347Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:41:59.411Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:41:59.411Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:41:59.425Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:41:59.425Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:42:29.515Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:42:29.515Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:42:29.529Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:42:29.529Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:42:59.611Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:42:59.611Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:42:59.625Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:42:59.625Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:43:29.697Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:43:29.697Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:43:29.711Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:43:29.711Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:43:59.801Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:43:59.801Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:43:59.815Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:43:59.815Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:44:17.040Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-21T02:44:17.040Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T02:44:29.927Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:44:29.927Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:44:29.939Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:44:29.939Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:45:00.023Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:45:00.023Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:45:00.031Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:45:00.031Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:45:30.111Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:45:30.111Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:45:30.127Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:45:30.127Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:46:00.209Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:46:00.209Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:46:00.221Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:46:00.221Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:46:30.319Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:46:30.319Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:46:30.333Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:46:30.333Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:47:00.409Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:47:00.409Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:47:00.419Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:47:00.419Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:47:18.066Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-21T02:47:18.066Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T02:47:30.485Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:47:30.485Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:47:30.495Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:47:30.495Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:48:00.593Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:48:00.593Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:48:00.601Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:48:00.601Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:48:30.707Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:48:30.707Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:48:30.719Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:48:30.719Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:49:00.809Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:49:00.809Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:49:00.823Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:49:00.823Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:49:30.927Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:49:30.927Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:49:30.941Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:49:30.941Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:50:01.033Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:50:01.034Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:50:01.047Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:50:01.047Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:50:31.167Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:50:31.167Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:50:31.181Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:50:31.182Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:51:01.269Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:51:01.269Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:51:01.287Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:51:01.287Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:51:31.383Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:51:31.383Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:51:31.397Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:51:31.397Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:52:01.486Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:52:01.486Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:52:01.499Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:52:01.500Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:52:31.618Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:52:31.618Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:52:31.631Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:52:31.632Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:53:01.719Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:53:01.719Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:53:01.733Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:53:01.734Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:53:31.822Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:53:31.822Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:53:31.835Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:53:31.835Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:54:01.903Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:54:01.904Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:54:01.918Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:54:01.918Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:54:32.020Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:54:32.020Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:54:32.038Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:54:32.038Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:55:02.146Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:55:02.146Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:55:02.160Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:55:02.160Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:55:32.218Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:55:32.218Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:55:32.232Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:55:32.232Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:56:02.310Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:56:02.310Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:56:02.324Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:56:02.324Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:56:32.452Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:56:32.452Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:56:32.466Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:56:32.466Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:57:02.556Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:57:02.556Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:57:02.568Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:57:02.568Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:57:32.637Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:57:32.637Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:57:32.651Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:57:32.651Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:58:02.723Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:58:02.724Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:58:02.735Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:58:02.735Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:58:32.805Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:58:32.805Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:58:32.817Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:58:32.817Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:59:02.882Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:59:02.882Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:59:02.895Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:59:02.895Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:59:32.959Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:59:32.959Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T02:59:32.973Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T02:59:32.974Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:00:03.029Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:00:03.030Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:00:03.043Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:00:03.044Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:00:33.103Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:00:33.104Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:00:33.117Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:00:33.117Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:01:03.190Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:01:03.190Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:01:03.209Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:01:03.209Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:01:33.266Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:01:33.266Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:01:33.279Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:01:33.279Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:02:03.359Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:02:03.360Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:02:03.369Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:02:03.369Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:02:33.429Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:02:33.430Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:02:33.444Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:02:33.444Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:03:03.496Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:03:03.496Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:03:03.510Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:03:03.510Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:03:33.579Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:03:33.580Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:03:33.594Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:03:33.594Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:04:03.660Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:04:03.660Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:04:03.667Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:04:03.667Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:04:33.733Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:04:33.733Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:04:33.746Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:04:33.746Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:05:03.808Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:05:03.808Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:05:03.820Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:05:03.820Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:05:33.887Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:05:33.887Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:05:33.900Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:05:33.900Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:06:03.960Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:06:03.960Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:06:03.973Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:06:03.973Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:06:34.044Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:06:34.044Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:06:34.052Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:06:34.052Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:07:04.114Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:07:04.114Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:07:04.126Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:07:04.126Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:07:34.184Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:07:34.184Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:07:34.193Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:07:34.193Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:08:04.250Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:08:04.250Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:08:04.264Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:08:04.264Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:08:34.320Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:08:34.320Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:08:34.334Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:08:34.334Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:09:04.396Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:09:04.396Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:09:04.404Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:09:04.404Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:09:34.474Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:09:34.474Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:09:34.482Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:09:34.482Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:10:04.544Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:10:04.544Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:10:04.558Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:10:04.558Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:10:34.628Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:10:34.628Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:10:34.642Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:10:34.642Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:11:04.694Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:11:04.694Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:11:04.704Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:11:04.704Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:11:34.770Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:11:34.770Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:11:34.784Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:11:34.784Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:12:04.850Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:12:04.850Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:12:04.864Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:12:04.864Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:12:34.918Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:12:34.918Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:12:34.930Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:12:34.930Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:13:04.990Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:13:04.990Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:13:05.002Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:13:05.002Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:13:35.058Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:13:35.058Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:13:35.068Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:13:35.068Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:14:05.126Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:14:05.126Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:14:05.140Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:14:05.140Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:14:35.202Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:14:35.202Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:14:35.216Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:14:35.216Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:15:05.274Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:15:05.274Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:15:05.288Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:15:05.288Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:15:35.362Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:15:35.362Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:15:35.376Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:15:35.376Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:16:05.438Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:16:05.438Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:16:05.452Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:16:05.452Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:16:35.522Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:16:35.522Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:16:35.532Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:16:35.532Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:17:05.610Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:17:05.610Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:17:05.618Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:17:05.618Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:17:35.692Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:17:35.692Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:17:35.704Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:17:35.704Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:18:05.773Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:18:05.773Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:18:05.786Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:18:05.786Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:18:35.874Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:18:35.874Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:18:35.888Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:18:35.888Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:19:05.970Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:19:05.970Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:19:05.982Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:19:05.982Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:19:36.070Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:19:36.070Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:19:36.082Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:19:36.082Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:20:06.144Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:20:06.144Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:20:06.158Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:20:06.158Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:20:36.222Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:20:36.222Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:20:36.236Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:20:36.236Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:21:06.302Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:21:06.302Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:21:06.312Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:21:06.312Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:21:36.364Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:21:36.364Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:21:36.378Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:21:36.378Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:22:06.450Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:22:06.450Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:22:06.462Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:22:06.462Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:22:36.604Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:22:36.604Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:22:36.622Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:22:36.622Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:23:06.682Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:23:06.682Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:23:06.694Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:23:06.694Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:23:36.768Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:23:36.768Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:23:36.782Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:23:36.782Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:24:06.846Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:24:06.846Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:24:06.860Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:24:06.860Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:24:36.932Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:24:36.932Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:24:36.946Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:24:36.946Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:25:07.014Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:25:07.014Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:25:07.022Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:25:07.022Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:25:37.088Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:25:37.088Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:25:37.102Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:25:37.102Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:26:07.165Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:26:07.165Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:26:07.180Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:26:07.180Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:26:37.230Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:26:37.230Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:26:37.242Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:26:37.242Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:27:07.304Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:27:07.304Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:27:07.322Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:27:07.322Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:27:37.404Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:27:37.404Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:27:37.418Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:27:37.418Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:28:07.482Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:28:07.482Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:28:07.490Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:28:07.490Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:28:37.553Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:28:37.553Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:28:37.563Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:28:37.563Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:29:07.619Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:29:07.619Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:29:07.634Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:29:07.634Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:29:37.698Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:29:37.698Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:29:37.707Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:29:37.707Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:30:07.841Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:30:07.841Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:30:07.855Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:30:07.855Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:30:37.917Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:30:37.918Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:30:37.932Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:30:37.932Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:31:08.001Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:31:08.001Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:31:08.015Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:31:08.016Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:31:38.069Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:31:38.069Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:31:38.086Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:31:38.086Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:32:08.135Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:32:08.136Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:32:08.150Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:32:08.150Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:32:38.292Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:32:38.292Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:32:38.305Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:32:38.305Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:33:08.359Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:33:08.359Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:33:08.372Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:33:08.372Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:33:38.429Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:33:38.429Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:33:38.437Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:33:38.437Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:34:08.493Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:34:08.493Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:34:08.505Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:34:08.505Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:34:38.559Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:34:38.559Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:34:38.571Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:34:38.572Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:35:08.632Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:35:08.632Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:35:08.645Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:35:08.646Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:35:38.705Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:35:38.705Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:35:38.719Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:35:38.719Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:36:08.781Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:36:08.781Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:36:08.796Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:36:08.796Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:36:38.854Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:36:38.854Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:36:38.862Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:36:38.862Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:37:08.918Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:37:08.919Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:37:08.933Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:37:08.933Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:37:39.004Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:37:39.005Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:37:39.020Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:37:39.020Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:38:09.087Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:38:09.088Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:38:09.100Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:38:09.101Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:38:39.162Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:38:39.163Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:38:39.176Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:38:39.177Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:39:09.233Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:39:09.234Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:39:09.245Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:39:09.245Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:39:39.310Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:39:39.310Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:39:39.325Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:39:39.325Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:40:09.389Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:40:09.389Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:40:09.400Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:40:09.400Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:40:39.451Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:40:39.452Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:40:39.464Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:40:39.464Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:41:09.528Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:41:09.528Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:41:09.543Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:41:09.544Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:41:39.605Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:41:39.606Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:41:39.620Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:41:39.620Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:42:09.706Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:42:09.706Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:42:09.721Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:42:09.721Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:42:39.783Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:42:39.783Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:42:39.797Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:42:39.797Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:43:09.859Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:43:09.859Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:43:09.873Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:43:09.873Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:43:39.935Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:43:39.935Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:43:39.949Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:43:39.949Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:44:10.025Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:44:10.025Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:44:10.035Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:44:10.035Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:44:40.089Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:44:40.089Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:44:40.107Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:44:40.107Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:45:10.175Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:45:10.175Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:45:10.189Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:45:10.189Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:45:40.255Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:45:40.255Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:45:40.269Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:45:40.269Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:46:10.351Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:46:10.351Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:46:10.367Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:46:10.367Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:46:40.421Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:46:40.421Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:46:40.433Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:46:40.433Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:47:10.505Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:47:10.505Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:47:10.519Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:47:10.519Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:47:40.585Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:47:40.585Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:47:40.599Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:47:40.599Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:48:10.667Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:48:10.667Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:48:10.681Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:48:10.681Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:48:40.779Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:48:40.779Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:48:40.791Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:48:40.791Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:49:10.865Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:49:10.866Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:49:10.881Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:49:10.881Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:49:40.969Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:49:40.969Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:49:40.983Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:49:40.983Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:50:11.087Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:50:11.087Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:50:11.101Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:50:11.101Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:50:41.179Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:50:41.179Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:50:41.189Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:50:41.189Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:51:11.295Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:51:11.296Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:51:11.309Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:51:11.309Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:51:41.427Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:51:41.428Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:51:41.441Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:51:41.441Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:52:11.549Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:52:11.550Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:52:11.557Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:52:11.557Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:52:41.668Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:52:41.668Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:52:41.683Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:52:41.683Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:53:11.791Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:53:11.791Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:53:11.805Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:53:11.805Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:53:41.904Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:53:41.904Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:53:41.915Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:53:41.915Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:54:11.979Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:54:11.979Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:54:11.993Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:54:11.993Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:54:42.057Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:54:42.058Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:54:42.071Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:54:42.071Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:55:12.157Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:55:12.157Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:55:12.169Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:55:12.169Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:55:42.231Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:55:42.232Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:55:42.245Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:55:42.245Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:56:12.332Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:56:12.332Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:56:12.345Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:56:12.345Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:56:42.432Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:56:42.432Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:56:42.445Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:56:42.445Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:57:12.529Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:57:12.530Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:57:12.543Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:57:12.543Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:57:42.659Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:57:42.659Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:57:42.673Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:57:42.673Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:58:12.745Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:58:12.745Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:58:12.759Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:58:12.759Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:58:42.857Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:58:42.857Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:58:42.871Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:58:42.871Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:59:12.950Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:59:12.950Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:59:12.962Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:59:12.962Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:59:43.059Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:59:43.059Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T03:59:43.072Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T03:59:43.072Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:00:13.168Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:00:13.168Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:00:13.182Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:00:13.182Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:00:43.304Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:00:43.304Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:00:43.318Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:00:43.318Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:01:13.440Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:01:13.440Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:01:13.454Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:01:13.454Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:01:43.552Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:01:43.552Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:01:43.564Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:01:43.564Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:02:13.648Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:02:13.648Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:02:13.662Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:02:13.662Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:02:43.744Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:02:43.744Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:02:43.758Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:02:43.758Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:03:13.838Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:03:13.838Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:03:13.851Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:03:13.851Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:03:43.936Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:03:43.936Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:03:43.949Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:03:43.949Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:04:14.045Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:04:14.045Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:04:14.059Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:04:14.059Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:04:44.168Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:04:44.168Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:04:44.181Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:04:44.181Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:05:14.255Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:05:14.256Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:05:14.265Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:05:14.265Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:05:44.373Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:05:44.373Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:05:44.387Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:05:44.387Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:06:14.463Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:06:14.463Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:06:14.475Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:06:14.475Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:06:44.585Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:06:44.585Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:06:44.599Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:06:44.599Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:07:14.675Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:07:14.675Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:07:14.689Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:07:14.689Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:07:44.777Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:07:44.777Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:07:44.791Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:07:44.791Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:08:14.873Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:08:14.873Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:08:14.887Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:08:14.887Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:08:44.987Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:08:44.987Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:08:44.998Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:08:44.999Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:09:15.085Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:09:15.085Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:09:15.099Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:09:15.099Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:09:45.176Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:09:45.176Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:09:45.188Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:09:45.188Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:10:15.262Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:10:15.262Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:10:15.276Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:10:15.276Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:10:45.366Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:10:45.367Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:10:45.380Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:10:45.380Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:11:15.446Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:11:15.447Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:11:15.458Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:11:15.458Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:11:45.532Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:11:45.532Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:11:45.546Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:11:45.546Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:12:15.628Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:12:15.628Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:12:15.642Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:12:15.642Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:12:45.712Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:12:45.712Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:12:45.724Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:12:45.724Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:13:15.786Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:13:15.786Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:13:15.800Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:13:15.800Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:13:45.872Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:13:45.872Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:13:45.886Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:13:45.886Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:14:15.988Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:14:15.988Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:14:16.006Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:14:16.006Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:14:46.098Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:14:46.098Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:14:46.112Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:14:46.112Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:15:16.212Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:15:16.212Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:15:16.226Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:15:16.226Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:15:46.316Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:15:46.316Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:15:46.330Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:15:46.330Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:16:16.636Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:16:16.636Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:16:16.645Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:16:16.646Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:16:46.746Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:16:46.746Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:16:46.759Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:16:46.760Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:17:16.862Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:17:16.862Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:17:16.875Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:17:16.876Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:17:46.968Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:17:46.968Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:17:46.982Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:17:46.982Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:18:17.070Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:18:17.070Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:18:17.083Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:18:17.083Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:18:47.169Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:18:47.170Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:18:47.179Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:18:47.179Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:19:17.278Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:19:17.278Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:19:17.291Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:19:17.292Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:19:47.375Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:19:47.375Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:19:47.387Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:19:47.387Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:20:17.467Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:20:17.467Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:20:17.479Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:20:17.480Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:20:47.580Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:20:47.580Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:20:47.595Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:20:47.596Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:21:17.675Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:21:17.675Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:21:17.689Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:21:17.690Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:21:47.795Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:21:47.796Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:21:47.810Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:21:47.810Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:22:17.896Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:22:17.896Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:22:17.909Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:22:17.909Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:22:48.021Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:22:48.022Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:22:48.033Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:22:48.033Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:23:18.117Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:23:18.118Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:23:18.131Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:23:18.132Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:23:48.242Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:23:48.242Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:23:48.257Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:23:48.257Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:24:18.345Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:24:18.345Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:24:18.357Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:24:18.357Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:24:48.450Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:24:48.450Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:24:48.465Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:24:48.465Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:25:18.551Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:25:18.551Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:25:18.565Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:25:18.566Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:25:48.641Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:25:48.642Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:25:48.655Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:25:48.655Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:26:18.741Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:26:18.742Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:26:18.755Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:26:18.755Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:26:48.821Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:26:48.821Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:26:48.835Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:26:48.835Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:27:18.925Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:27:18.926Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:27:18.939Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:27:18.939Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:27:49.001Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:27:49.001Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:27:49.015Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:27:49.015Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:28:19.073Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:28:19.073Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:28:19.087Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:28:19.087Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:28:49.151Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:28:49.151Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:28:49.165Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:28:49.165Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:29:19.231Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:29:19.231Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:29:19.243Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:29:19.243Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:29:49.305Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:29:49.305Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:29:49.319Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:29:49.319Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:30:19.377Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:30:19.377Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:30:19.391Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:30:19.391Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:30:49.453Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:30:49.453Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:30:49.467Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:30:49.467Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:31:19.531Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:31:19.531Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:31:19.545Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:31:19.545Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:31:49.811Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:31:49.811Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:31:49.825Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:31:49.825Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:32:19.891Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:32:19.892Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:32:19.906Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:32:19.906Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:32:49.971Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:32:49.971Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:32:49.985Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:32:49.986Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:33:20.038Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:33:20.038Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:33:20.052Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:33:20.052Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:33:50.331Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:33:50.332Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:33:50.344Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:33:50.344Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:34:20.432Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:34:20.432Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:34:20.446Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:34:20.446Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:34:50.502Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:34:50.502Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:34:50.516Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:34:50.516Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:35:20.630Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:35:20.630Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:35:20.644Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:35:20.644Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:35:50.708Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:35:50.708Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:35:50.722Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:35:50.722Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:36:20.792Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:36:20.792Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:36:20.805Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:36:20.806Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:36:50.992Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:36:50.992Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:36:51.008Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:36:51.008Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:37:21.074Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:37:21.074Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:37:21.088Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:37:21.088Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:37:51.168Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:37:51.168Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:37:51.182Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:37:51.182Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:38:21.248Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:38:21.248Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:38:21.262Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:38:21.262Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:38:51.338Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:38:51.338Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:38:51.351Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:38:51.351Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:39:21.413Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:39:21.414Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:39:21.426Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:39:21.426Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:39:51.492Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:39:51.492Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:39:51.506Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:39:51.506Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:40:14.639Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T04:40:14.639Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T04:40:21.592Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:40:21.592Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:40:21.606Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:40:21.606Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:40:51.672Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:40:51.672Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:40:51.686Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:40:51.686Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:41:21.748Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:41:21.748Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:41:21.760Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:41:21.760Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:41:51.850Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:41:51.850Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:41:51.864Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:41:51.864Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:42:21.954Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:42:21.954Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:42:21.968Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:42:21.968Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:42:52.078Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:42:52.078Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:42:52.088Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:42:52.088Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:43:22.178Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:43:22.179Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:43:22.192Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:43:22.192Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:43:52.294Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:43:52.294Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:43:52.308Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:43:52.308Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:44:22.404Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:44:22.404Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:44:22.418Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:44:22.418Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:44:52.510Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:44:52.510Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:44:52.520Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:44:52.520Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:45:22.664Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:45:22.665Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:45:22.678Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:45:22.678Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:45:52.764Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:45:52.765Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:45:52.778Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:45:52.778Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:46:22.873Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:46:22.873Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:46:22.886Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:46:22.886Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:46:52.954Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:46:52.955Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:46:52.968Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:46:52.968Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:47:23.071Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:47:23.071Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:47:23.084Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:47:23.084Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:47:53.345Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:47:53.345Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:47:53.358Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:47:53.358Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:48:23.461Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:48:23.461Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:48:23.474Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:48:23.474Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:48:53.586Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:48:53.586Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:48:53.600Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:48:53.601Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:49:23.728Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:49:23.729Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:49:23.741Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:49:23.741Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:49:53.845Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:49:53.845Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:49:53.858Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:49:53.858Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:50:23.963Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:50:23.963Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:50:23.976Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:50:23.976Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:50:54.094Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:50:54.094Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:50:54.106Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:50:54.106Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:51:24.520Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:51:24.521Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:51:24.535Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:51:24.535Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:51:54.646Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:51:54.646Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:51:54.660Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:51:54.660Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:52:24.774Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:52:24.774Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:52:24.786Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:52:24.786Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:52:54.904Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:52:54.904Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:52:54.918Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:52:54.918Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:53:25.000Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:53:25.000Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:53:25.013Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:53:25.013Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:53:55.104Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:53:55.104Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:53:55.118Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:53:55.118Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:54:25.208Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:54:25.208Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:54:25.218Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:54:25.218Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:54:55.300Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:54:55.300Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:54:55.314Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:54:55.314Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:55:25.398Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:55:25.398Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:55:25.410Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:55:25.410Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:55:55.652Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:55:55.652Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:55:55.665Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:55:55.665Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:56:25.760Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:56:25.760Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:56:25.772Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:56:25.772Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:56:55.840Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:56:55.840Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:56:55.854Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:56:55.854Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:57:25.916Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:57:25.916Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:57:25.930Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:57:25.930Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:57:56.000Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:57:56.000Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:57:56.014Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:57:56.014Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:58:26.080Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:58:26.080Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:58:26.096Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:58:26.096Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:58:56.156Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:58:56.156Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:58:56.170Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:58:56.170Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:59:26.228Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:59:26.228Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:59:26.240Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:59:26.240Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:59:56.300Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:59:56.300Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T04:59:56.314Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T04:59:56.314Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:00:26.372Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:00:26.372Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:00:26.386Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:00:26.386Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:00:56.438Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:00:56.438Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:00:56.450Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:00:56.450Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:01:26.512Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:01:26.512Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:01:26.526Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:01:26.526Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:01:56.588Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:01:56.588Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:01:56.602Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:01:56.602Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:02:26.682Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:02:26.682Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:02:26.696Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:02:26.696Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:02:56.982Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:02:56.982Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:02:56.996Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:02:56.996Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:03:27.064Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:03:27.064Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:03:27.078Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:03:27.078Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:03:57.154Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:03:57.154Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:03:57.168Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:03:57.168Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:04:27.246Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:04:27.246Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:04:27.260Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:04:27.260Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:04:57.328Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:04:57.328Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:04:57.340Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:04:57.340Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:05:27.434Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:05:27.434Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:05:27.448Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:05:27.448Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:05:57.544Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:05:57.544Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:05:57.558Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:05:57.558Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:06:27.617Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:06:27.618Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:06:27.631Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:06:27.631Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:06:57.703Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:06:57.704Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:06:57.717Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:06:57.718Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:07:27.777Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:07:27.777Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:07:27.791Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:07:27.791Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:07:57.869Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:07:57.869Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:07:57.877Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:07:57.877Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:08:27.934Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:08:27.934Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:08:27.948Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:08:27.948Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:08:58.022Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:08:58.022Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:08:58.033Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:08:58.033Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:09:28.098Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:09:28.098Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:09:28.111Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:09:28.111Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:09:58.193Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:09:58.193Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:09:58.207Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:09:58.207Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:10:28.278Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:10:28.278Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:10:28.291Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:10:28.291Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:10:58.347Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:10:58.347Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:10:58.355Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:10:58.355Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:11:28.413Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:11:28.413Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:11:28.423Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:11:28.423Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:11:58.483Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:11:58.483Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:11:58.496Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:11:58.496Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:12:28.579Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:12:28.579Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:12:28.592Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:12:28.592Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:12:58.656Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:12:58.657Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:12:58.670Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:12:58.670Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:13:28.726Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:13:28.727Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:13:28.738Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:13:28.738Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:13:58.816Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:13:58.816Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:13:58.830Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:13:58.830Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:14:28.886Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:14:28.886Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:14:28.902Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:14:28.902Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:14:58.968Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:14:58.968Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:14:58.980Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:14:58.980Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:15:29.052Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:15:29.052Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:15:29.066Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:15:29.066Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:15:59.138Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:15:59.138Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:15:59.152Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:15:59.152Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:16:29.208Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:16:29.209Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:16:29.222Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:16:29.222Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:16:59.580Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:16:59.580Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:16:59.594Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:16:59.594Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:17:29.680Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:17:29.680Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:17:29.695Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:17:29.695Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:17:59.765Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:17:59.766Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:17:59.779Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:17:59.780Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:18:29.849Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:18:29.849Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:18:29.864Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:18:29.864Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:18:59.937Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:18:59.938Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:18:59.951Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:18:59.952Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:19:30.019Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:19:30.019Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:19:30.027Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:19:30.027Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:20:00.091Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:20:00.091Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:20:00.105Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:20:00.105Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:20:30.165Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:20:30.166Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:20:30.179Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:20:30.179Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:21:00.239Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:21:00.239Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:21:00.253Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:21:00.253Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:21:30.303Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:21:30.303Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:21:30.317Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:21:30.317Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:22:00.379Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:22:00.379Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:22:00.391Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:22:00.391Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:22:30.447Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:22:30.447Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:22:30.459Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:22:30.459Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:23:00.519Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:23:00.519Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:23:00.532Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:23:00.532Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:23:30.595Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:23:30.595Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:23:30.609Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:23:30.609Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:24:00.682Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:24:00.683Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:24:00.690Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:24:00.690Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:24:21.650Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T05:24:21.650Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T05:24:30.779Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:24:30.779Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:24:30.793Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:24:30.793Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:25:00.855Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:25:00.855Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:25:00.868Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:25:00.868Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:25:30.925Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:25:30.925Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:25:30.938Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:25:30.938Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:26:01.004Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:26:01.004Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:26:01.018Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:26:01.018Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:26:31.068Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:26:31.068Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:26:31.082Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:26:31.082Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:27:01.134Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:27:01.134Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:27:01.148Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:27:01.148Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:27:31.199Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:27:31.199Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:27:31.212Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:27:31.212Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:28:01.270Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:28:01.270Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:28:01.284Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:28:01.284Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:28:31.336Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:28:31.336Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:28:31.350Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:28:31.350Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:29:01.410Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:29:01.410Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:29:01.426Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:29:01.426Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:29:31.492Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:29:31.492Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:29:31.506Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:29:31.506Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:30:01.560Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:30:01.560Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:30:01.572Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:30:01.572Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:30:31.632Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:30:31.632Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:30:31.646Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:30:31.646Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:31:01.704Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:31:01.704Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:31:01.718Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:31:01.718Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:31:31.776Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:31:31.776Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:31:31.788Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:31:31.788Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:32:01.858Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:32:01.858Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:32:01.872Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:32:01.872Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:32:31.940Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:32:31.940Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:32:31.953Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:32:31.953Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:33:02.012Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:33:02.012Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:33:02.025Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:33:02.026Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:33:32.092Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:33:32.092Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:33:32.106Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:33:32.106Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:33:38.064Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-21T05:33:38.064Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T05:34:02.172Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:34:02.172Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:34:02.186Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:34:02.186Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:34:32.252Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:34:32.252Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:34:32.260Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:34:32.260Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:35:02.314Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:35:02.314Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:35:02.328Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:35:02.328Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:35:32.384Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:35:32.384Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:35:32.395Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:35:32.395Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:36:02.443Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:36:02.444Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:36:02.457Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:36:02.457Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:36:32.513Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:36:32.514Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:36:32.527Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:36:32.527Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:37:02.587Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:37:02.587Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:37:02.601Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:37:02.601Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:37:32.669Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:37:32.670Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:37:32.683Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:37:32.683Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:38:02.749Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:38:02.749Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:38:02.757Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:38:02.757Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:38:32.813Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:38:32.813Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:38:32.826Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:38:32.826Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:39:02.887Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:39:02.888Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:39:02.899Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:39:02.899Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:39:32.959Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:39:32.959Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:39:32.973Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:39:32.973Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:40:03.029Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:40:03.029Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:40:03.043Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:40:03.043Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:40:33.102Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:40:33.102Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:40:33.115Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:40:33.115Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:41:03.176Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:41:03.176Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:41:03.190Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:41:03.190Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:41:33.248Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:41:33.248Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:41:33.262Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:41:33.262Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:42:03.324Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:42:03.324Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:42:03.338Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:42:03.338Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:42:33.406Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:42:33.406Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:42:33.420Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:42:33.420Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:43:03.481Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:43:03.481Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:43:03.494Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:43:03.494Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:43:33.560Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:43:33.560Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:43:33.574Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:43:33.574Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:44:03.632Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:44:03.633Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:44:03.646Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:44:03.646Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:44:33.717Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:44:33.717Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:44:33.731Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:44:33.731Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:45:03.826Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:45:03.826Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:45:03.842Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:45:03.842Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:45:33.938Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:45:33.938Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:45:33.953Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:45:33.953Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:46:04.051Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:46:04.051Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:46:04.064Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:46:04.064Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:46:34.177Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:46:34.177Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:46:34.191Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:46:34.191Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:47:04.307Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:47:04.307Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:47:04.321Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:47:04.321Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:47:34.431Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:47:34.431Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:47:34.445Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:47:34.445Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:48:04.543Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:48:04.543Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:48:04.557Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:48:04.557Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:48:34.685Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:48:34.685Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:48:34.699Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:48:34.699Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:49:04.797Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:49:04.797Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:49:04.805Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:49:04.805Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:49:34.901Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:49:34.901Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:49:34.915Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:49:34.915Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:50:05.005Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:50:05.005Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:50:05.019Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:50:05.019Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:50:35.113Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:50:35.114Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:50:35.128Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:50:35.128Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:51:05.235Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:51:05.235Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:51:05.248Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:51:05.248Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:51:35.338Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:51:35.338Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:51:35.351Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:51:35.351Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:52:05.455Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:52:05.455Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:52:05.469Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:52:05.469Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:52:35.589Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:52:35.590Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:52:35.609Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:52:35.609Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:53:05.710Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:53:05.710Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:53:05.724Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:53:05.724Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:53:35.835Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:53:35.836Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:53:35.847Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:53:35.848Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:54:05.950Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:54:05.950Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:54:05.964Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:54:05.964Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:54:36.072Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:54:36.072Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:54:36.086Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:54:36.086Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:55:06.206Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:55:06.206Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:55:06.222Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:55:06.222Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:55:36.326Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:55:36.326Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:55:36.340Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:55:36.340Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:56:06.446Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:56:06.446Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:56:06.454Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:56:06.454Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:56:36.560Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:56:36.560Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:56:36.574Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:56:36.574Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:57:06.670Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:57:06.670Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:57:06.684Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:57:06.684Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:57:36.922Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:57:36.922Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:57:36.936Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:57:36.936Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:58:07.050Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:58:07.050Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:58:07.064Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:58:07.064Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:58:37.160Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:58:37.160Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:58:37.173Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:58:37.174Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:02.344Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:02.344Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:02.356Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:02.356Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:07.268Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:07.268Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:07.281Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:07.282Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:32.238Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:32.238Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:32.247Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:32.247Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:37.364Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:37.364Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:37.377Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:37.377Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:40.600Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:40.600Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T05:59:40.611Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T05:59:40.612Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:00:07.456Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:00:07.456Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:00:07.470Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:00:07.470Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:00:37.551Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:00:37.552Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:00:37.566Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:00:37.566Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:01:07.642Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:01:07.642Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:01:07.656Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:01:07.656Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:01:37.732Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:01:37.732Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:01:37.746Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:01:37.746Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:01:47.040Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-21T06:01:47.041Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T06:02:07.812Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:02:07.812Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T06:02:07.823Z] error: Error calling http://10.250.50.51:7852/... +[2025-02-21T06:02:07.823Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:7852 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 7852 + } +] +[2025-02-21T07:07:35.067Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-21T07:07:35.068Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T07:38:39.631Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T07:38:39.631Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T07:59:19.064Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-21T07:59:19.064Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T08:04:42.646Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T08:04:42.646Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T13:54:26.632Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T13:54:26.632Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T14:48:07.044Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-21T14:48:07.044Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T14:58:34.641Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T14:58:34.641Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T16:00:42.636Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T16:00:42.636Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T16:09:13.630Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T16:09:13.630Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T21:32:48.064Z] error: Error calling https://10.250.50.50:9090/... +[2025-02-21T21:32:48.064Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-21T21:40:17.639Z] error: Error calling https://10.0.50.50:9090/... +[2025-02-21T21:40:17.639Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-02-23T06:36:41.773Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-23T06:36:41.774Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-23T06:36:41.792Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-23T06:36:41.792Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-23T07:05:07.022Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-23T07:05:07.022Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-23T07:05:07.037Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-23T07:05:07.037Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-27T19:04:05.870Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-27T19:04:05.871Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-02-27T19:04:05.885Z] error: Error calling http://10.250.50.51:8188/... +[2025-02-27T19:04:05.885Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-03-01T23:17:31.322Z] error: Error calling http://10.0.90.125/... +[2025-03-01T23:17:31.323Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-01T23:17:34.320Z] error: Error calling http://10.0.90.125/... +[2025-03-01T23:17:34.320Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-10T07:17:13.049Z] error: Error calling http://10.250.50.51:8188/... +[2025-03-10T07:17:13.050Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-03-10T07:17:13.060Z] error: Error calling http://10.250.50.51:8188/... +[2025-03-10T07:17:13.060Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-03-10T08:08:03.648Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-10T08:08:03.648Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T08:26:04.633Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-10T08:26:04.633Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T08:47:35.628Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-10T08:47:35.628Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T09:33:30.044Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T09:33:30.044Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T09:56:34.056Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T09:56:34.056Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T10:06:36.042Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T10:06:36.042Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T10:23:10.626Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-10T10:23:10.626Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T10:42:43.042Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T10:42:43.042Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T10:47:44.050Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T10:47:44.050Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T11:41:54.055Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T11:41:54.055Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T12:04:58.057Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T12:04:58.057Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T12:53:07.044Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T12:53:07.044Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T13:15:48.626Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-10T13:15:48.626Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T13:16:11.048Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T13:16:11.049Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T13:57:19.063Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T13:57:19.063Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T14:25:54.057Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T14:25:54.058Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T14:30:55.050Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T14:30:55.051Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T14:32:52.630Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-10T14:32:52.630Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T14:35:56.048Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T14:35:56.048Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T15:21:05.072Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T15:21:05.072Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T15:41:09.068Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-10T15:41:09.068Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-10T15:59:28.644Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-10T15:59:28.644Z] error: [ + 500, + Error: socket hang up + at connResetException (node:internal/errors:720:14) + at TLSSocket.socketOnEnd (node:_http_client:525:23) + at TLSSocket.emit (node:events:529:35) + at endReadableNT (node:internal/streams/readable:1400:12) + at process.processTicksAndRejections (node:internal/process/task_queues:82:21) { + code: 'ECONNRESET' + } +] +[2025-03-11T22:37:45.085Z] error: Error calling http://10.0.90.125/... +[2025-03-11T22:37:45.085Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-11T22:37:48.084Z] error: Error calling http://10.0.90.125/... +[2025-03-11T22:37:48.084Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-12T08:40:24.564Z] error: Error calling http://10.250.50.51:8880/web... +[2025-03-12T08:40:24.564Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8880 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8880 + } +] +[2025-03-12T08:40:24.566Z] error: Error calling http://10.250.50.51:8188/... +[2025-03-12T08:40:24.566Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-03-12T08:40:27.574Z] error: Error calling http://10.250.50.51:8880/web... +[2025-03-12T08:40:27.574Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8880 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8880 + } +] +[2025-03-12T08:40:27.575Z] error: Error calling http://10.250.50.51:8188/... +[2025-03-12T08:40:27.575Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-03-12T09:08:04.601Z] error: Error calling http://10.250.50.51:8188/... +[2025-03-12T09:08:04.601Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-03-12T09:08:04.606Z] error: Error calling http://10.250.50.51:8880/web... +[2025-03-12T09:08:04.607Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8880 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8880 + } +] +[2025-03-12T09:08:04.613Z] error: Error calling http://10.250.50.51:8188/... +[2025-03-12T09:08:04.613Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-03-12T09:08:04.623Z] error: Error calling http://10.250.50.51:8880/web... +[2025-03-12T09:08:04.623Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.51:8880 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.51', + port: 8880 + } +] +[2025-03-12T09:09:18.185Z] error: Error calling http://10.250.50.51:8880/web... +[2025-03-12T09:09:18.185Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8880 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8880 + } +] +[2025-03-12T09:09:18.187Z] error: Error calling http://10.250.50.51:8188/... +[2025-03-12T09:09:18.187Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-03-12T09:09:21.195Z] error: Error calling http://10.250.50.51:8880/web... +[2025-03-12T09:09:21.195Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8880 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8880 + } +] +[2025-03-12T09:09:21.196Z] error: Error calling http://10.250.50.51:8188/... +[2025-03-12T09:09:21.196Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.250.50.51:8188 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.250.50.51', + port: 8188 + } +] +[2025-03-16T06:39:10.929Z] error: Error calling http://10.0.90.125/... +[2025-03-16T06:39:10.931Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-16T06:39:13.928Z] error: Error calling http://10.0.90.125/... +[2025-03-16T06:39:13.928Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-18T00:41:56.117Z] error: Error calling http://10.0.90.125/... +[2025-03-18T00:41:56.117Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-18T00:41:56.118Z] error: Error calling http://10.0.90.125/... +[2025-03-18T00:41:56.118Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-18T00:41:59.115Z] error: Error calling http://10.0.90.125/... +[2025-03-18T00:41:59.116Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-18T00:41:59.116Z] error: Error calling http://10.0.90.125/... +[2025-03-18T00:41:59.116Z] error: [ + 500, + Error: connect EHOSTUNREACH 10.0.90.125:80 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -113, + code: 'EHOSTUNREACH', + syscall: 'connect', + address: '10.0.90.125', + port: 80 + } +] +[2025-03-18T01:52:27.202Z] error: Error calling http://10.250.50.70:8380/api/overview... +[2025-03-18T01:52:27.202Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.70:8380 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.70', + port: 8380 + } +] +[2025-03-18T01:52:31.334Z] error: Error calling http://10.250.50.70:8380/api/overview... +[2025-03-18T01:52:31.334Z] error: [ + 500, + Error: connect ECONNREFUSED 10.250.50.70:8380 + at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) { + errno: -111, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.250.50.70', + port: 8380 + } +] +[2025-03-18T20:19:49.407Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.590Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.592Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.597Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.629Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.631Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.633Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.635Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.637Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.643Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.683Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.685Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:49.724Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.724Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.780Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.782Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.784Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.785Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.805Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.806Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.818Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.819Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.821Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.822Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.838Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:52.859Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.159Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.214Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.215Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.217Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.218Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.243Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.245Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.248Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.249Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.250Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.251Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.275Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:19:54.293Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:00.925Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:00.990Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:00.992Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.019Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.024Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.026Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.029Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.036Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.043Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.054Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.059Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.061Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:01.088Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.019Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.074Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.075Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.076Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.078Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.104Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.105Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.108Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.109Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.111Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.112Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.138Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:02.150Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.216Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.273Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.274Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.275Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.276Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.278Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.279Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.308Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.309Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.310Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.311Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.312Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:03.353Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:42.819Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:42.825Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:51.172Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:51.175Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:52.942Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.000Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.003Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.006Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.009Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.012Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.014Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.035Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.037Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.043Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.045Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.046Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:53.071Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.629Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.692Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.696Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.699Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.701Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.716Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.720Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.739Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.741Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.744Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.746Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.759Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:22:54.789Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.811Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.874Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.878Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.880Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.883Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.886Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.904Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.908Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.915Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.917Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.919Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.920Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:21.955Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.754Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.809Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.810Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.811Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.812Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.814Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.816Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.845Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.846Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.848Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.849Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.850Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:22.884Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:26.371Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:42.775Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:23:42.778Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:28.927Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:28.986Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.014Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.017Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.020Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.025Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.028Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.030Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.048Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.054Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.055Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.058Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.065Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.906Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.969Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.971Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.972Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.973Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.974Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:29.998Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:30.003Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:30.005Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:30.006Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:30.007Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:30.010Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:30.059Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.205Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.269Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.272Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.275Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.299Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.302Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.304Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.307Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.313Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.318Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.338Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.339Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:25:56.341Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:27:31.769Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:27:31.770Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.273Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.331Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.359Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.364Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.366Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.370Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.377Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.389Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.398Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.402Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.413Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.418Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:09.433Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.304Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.354Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.355Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.357Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.358Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.360Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.380Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.388Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.389Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.391Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.392Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.393Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:10.531Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:15.114Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.131Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.189Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.190Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.192Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.193Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.195Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.197Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.228Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.229Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.231Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.232Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.233Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:16.270Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.414Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.468Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.470Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.471Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.472Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.473Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.474Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.503Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.504Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.505Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.506Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.507Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:17.549Z] error: Host validation failed for: 10.0.50.45. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2025-03-18T20:28:52.662Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T20:28:52.667Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:28:53.089Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T20:28:53.091Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:29:08.371Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T20:29:08.373Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:29:08.790Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T20:29:08.791Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:47:16.569Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T20:47:16.570Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:47:17.093Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T20:47:17.094Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:50:05.142Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T20:50:05.142Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:50:05.475Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T20:50:05.477Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:54:28.413Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T20:54:28.414Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:54:28.947Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T20:54:28.948Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:57:21.022Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T20:57:21.022Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T20:57:21.348Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T20:57:21.349Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:03:27.493Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T21:03:27.494Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:03:27.870Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T21:03:27.872Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:03:33.541Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T21:03:33.541Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:03:33.881Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T21:03:33.881Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:13:54.034Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T21:13:54.034Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:13:54.356Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T21:13:54.356Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:16:06.940Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T21:16:06.940Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:16:07.453Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T21:16:07.454Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:17:36.604Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T21:17:36.605Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:17:36.899Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T21:17:36.900Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:18:27.939Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T21:18:27.939Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:18:28.310Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T21:18:28.311Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:19:05.275Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T21:19:05.276Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:19:05.518Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T21:19:05.518Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T21:24:00.712Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T21:24:00.712Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:33:00.713Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:33:00.714Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:33:01.045Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:33:01.046Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:33:05.477Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:33:05.478Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:33:05.727Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:33:05.727Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:36:18.724Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:36:18.725Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:36:19.369Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:36:19.369Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:36:19.923Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:36:19.924Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:36:27.563Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:36:27.564Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:36:27.914Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:36:27.915Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:40:16.122Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:40:16.122Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:40:16.630Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:40:16.631Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:41:59.796Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:41:59.796Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:42:00.296Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:42:00.297Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:42:00.651Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:42:00.652Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:42:00.972Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:42:00.973Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:05.752Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:44:05.756Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:06.133Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:44:06.133Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:06.626Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:44:06.626Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:06.955Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:44:06.955Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:27.250Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:44:27.250Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:27.608Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:44:27.608Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:30.903Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:44:30.904Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:31.274Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:44:31.274Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:39.006Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:44:39.006Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:44:39.348Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:44:39.348Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:50:03.083Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:50:03.083Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:50:03.491Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:50:03.491Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:54:16.226Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:54:16.227Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:54:16.631Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:54:16.631Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:08.637Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:08.637Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:08.808Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:08.809Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:09.263Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:09.264Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:09.618Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:09.619Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:10.988Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:10.988Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:11.351Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:11.352Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:12.180Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:12.181Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:12.560Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:12.560Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:20.624Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:20.625Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:20.986Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:20.986Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:23.314Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:23.314Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:23.692Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:23.692Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:31.731Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:31.732Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:36.828Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:36.828Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:37.188Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:37.189Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:41.828Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:41.829Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:42.182Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:42.183Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:42.553Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:42.554Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:43.251Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:55:43.252Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:55:43.582Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:55:43.583Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:56:17.323Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:56:17.324Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:56:17.690Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:56:17.691Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:56:19.719Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:56:19.719Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:56:20.038Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:56:20.038Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:56:29.664Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:56:29.664Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:56:30.010Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:56:30.011Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:57:01.035Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:57:01.035Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:57:01.410Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:57:01.411Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:57:01.603Z] error: Error: (HTTP code 404) no such container - No such container: 7142e21e8f3f_it-tools + at /app/node_modules/.pnpm/docker-modem@5.0.6/node_modules/docker-modem/lib/modem.js:383:17 + at getCause (/app/node_modules/.pnpm/docker-modem@5.0.6/node_modules/docker-modem/lib/modem.js:418:7) + at Modem.buildPayload (/app/node_modules/.pnpm/docker-modem@5.0.6/node_modules/docker-modem/lib/modem.js:379:5) + at IncomingMessage. (/app/node_modules/.pnpm/docker-modem@5.0.6/node_modules/docker-modem/lib/modem.js:347:16) + at IncomingMessage.emit (node:events:530:35) + at endReadableNT (node:internal/streams/readable:1698:12) + at process.processTicksAndRejections (node:internal/process/task_queues:90:21) +[2025-03-18T22:57:02.454Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:57:02.455Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:57:02.846Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:57:02.847Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:57:05.000Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:57:05.001Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:57:05.396Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:57:05.397Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:57:08.448Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:57:08.448Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:57:08.790Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:57:08.790Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:59:04.271Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:59:04.272Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:59:04.808Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:59:04.809Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:59:06.521Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-18T22:59:06.521Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-18T22:59:06.876Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-18T22:59:06.877Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:22:29.850Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T00:22:29.851Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:22:30.115Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T00:22:30.116Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:22:30.218Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T00:22:30.218Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:22:30.337Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T00:22:30.338Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:22:36.900Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T00:22:36.901Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:22:37.021Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T00:22:37.022Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:22:56.661Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T00:22:56.662Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:22:57.025Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T00:22:57.025Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:28:23.081Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T00:28:23.082Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:28:23.327Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T00:28:23.328Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:28:33.861Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T00:28:33.862Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T00:28:33.956Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T00:28:33.956Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T01:30:25.821Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T01:30:25.822Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T01:30:26.095Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T01:30:26.096Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T04:19:35.093Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T04:19:35.094Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T04:19:35.536Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T04:19:35.537Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:08:44.028Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T05:08:44.029Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:45:27.662Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T05:45:27.663Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:45:27.999Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T05:45:28.001Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:45:45.442Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T05:45:45.442Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:45:45.837Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T05:45:45.837Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:48:41.970Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T05:48:41.971Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:48:42.525Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T05:48:42.526Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:51:27.520Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T05:51:27.521Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:51:27.900Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T05:51:27.901Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:55:16.754Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T05:55:16.754Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:55:17.002Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T05:55:17.002Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:57:03.695Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T05:57:03.696Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:57:03.803Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T05:57:03.804Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:59:19.950Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T05:59:19.950Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T05:59:20.245Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T05:59:20.246Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:00:58.391Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:00:58.392Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:00:58.822Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:00:58.823Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:01:03.624Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:01:03.625Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:01:03.972Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:01:03.973Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:01:32.259Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:01:32.259Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:01:32.400Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:01:32.401Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:02:00.258Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:02:00.259Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:02:00.606Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:02:00.607Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:02:11.628Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:02:11.628Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:02:11.694Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:02:11.695Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:03:12.532Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:03:12.532Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:03:12.947Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:03:12.949Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:03:16.410Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:03:16.410Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:03:16.655Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:03:16.655Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:06:37.759Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:06:37.759Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:06:38.038Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:06:38.038Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:16:45.155Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:16:45.156Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:16:45.309Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:16:45.310Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:16:50.459Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:16:50.460Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:16:50.726Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:16:50.729Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:16:57.725Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:16:57.726Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:16:58.062Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:16:58.062Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:21:24.650Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:21:24.651Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:21:24.673Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:21:24.674Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:23:35.455Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:23:35.455Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:23:35.734Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:23:35.735Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:28:41.310Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:28:41.311Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:28:41.372Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:28:41.373Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:28:48.532Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:28:48.532Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:28:48.760Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:28:48.760Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:30:03.839Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:30:03.840Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:30:03.858Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:30:03.858Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:30:35.274Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:30:35.275Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:30:35.516Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:30:35.521Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:30:37.700Z] error: Error calling https://10.0.50.50:9090/... +[2025-03-19T06:30:37.701Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 736, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] +[2025-03-19T06:30:37.820Z] error: Error calling https://10.250.50.50:9090/... +[2025-03-19T06:30:37.821Z] error: [ + 500, + [Error: Parse Error: Data after `Connection: close`] { + bytesParsed: 750, + code: 'HPE_CLOSED_CONNECTION', + reason: 'Data after `Connection: close`', + rawPacket: + } +] diff --git a/conf/homepage/services.yaml b/conf/homepage/services.yaml index 0e137de..96dba86 100755 --- a/conf/homepage/services.yaml +++ b/conf/homepage/services.yaml @@ -2,6 +2,27 @@ # For configuration options and examples, please see: # https://gethomepage.dev/latest/configs/services +- Media: + - Plex: + href: http://10.0.50.56:32400 + icon: si-plex + siteMonitor: http://10.0.50.56:32400 + description: Media Server (esh-nas-pve 10.0.50.56) + widget: + type: plex + url: http://10.0.50.56:32400 + key: xkKeTCQaLhh3nUDGToLf + - Jellyfin: + href: http://10.0.50.57:8096 + icon: si-jellyfin + siteMonitor: http://10.0.50.57:8096 + description: Media Server (esh-nas-pve 10.0.50.57) + widget: + type: jellyfin + url: http://10.0.50.57:8096 + key: 068ca2d04e1041e894c04b36122e09ce + enableBlocks: true + - ESH: - Brother Printer: href: http://10.0.90.125/ @@ -23,15 +44,24 @@ siteMonitor: http://10.0.250.3 description: esh-sw-mda - ESH-NAS: - href: https://10.0.50.50 + href: https://10.0.50.50:9090 icon: mdi-nas - siteMonitor: https://10.0.50.50 - description: QNAP tvs-h1688x + siteMonitor: https://10.0.50.50:9090 + description: CoPilot Share Manager - use root - ESH-PVE: href: https://10.0.250.35:8006 siteMonitor: https://10.0.250.35:8006 description: Proxmox Server icon: si-proxmox + - ESH-PVE-NAS: + href: https://10.0.50.55:8006 + siteMonitor: https://10.0.50.55:8006 + description: Proxmox Server for Nas + icon: si-proxmox + - ESH-FileBot: + ping: https://10.0.50.70 + description: Restic Backup Target and File Sync (esh-nas-pve) + icon: mdi-sync-circle - ESH-VM-Docker: icon: si-docker ping: 10.0.50.45 @@ -43,7 +73,7 @@ icon: mdi-wall-fire siteMonitor: https://10.250.250.1 description: ana-gw Fortigate 81F - - PFI-r750xs-kvm: + - PFI-ML1-kvm: href: http://10.250.250.40/ ping: http://10.250.250.40/ icon: mdi-monitor @@ -56,6 +86,15 @@ siteMonitor: https://10.250.250.31:8006/ description: Proxmox Server icon: si-proxmox + - ANA-NAS: + href: https://10.250.50.50:9090/ + siteMonitor: https://10.250.50.50:9090/ + description: PVE NAS root + icon: mdi-nas + - ANA-FileBot: + ping: https://10.250.50.53/ + description: Proxmox Server + icon: si-proxmox - PFI-VM-Docker: icon: si-docker ping: 10.250.50.70 @@ -65,7 +104,6 @@ ping: 10.250.50.51 description: ML Server (10.250.50.51 ana) - - PFI-NH3: - NH3-Firewall: href: https://10.100.250.1 @@ -91,5 +129,19 @@ icon: si-docker ping: 10.100.50.40 description: Docker VM + - NH3-Ansible: + icon: si-ansible + ping: 10.100.50.42 + description: Ansible Control Node (10.100.50.42) - +- AI Systems: + - ComfyUI: + href: http://10.250.50.51:8188 + siteMonitor: http://10.250.50.51:8188 + description: ComfyUI Image/Video AI (AnaML port 8188) + icon: mdi-image-filter-center-focus + - KokoroTTS: + href: http://10.250.50.51:8880/web + siteMonitor: http://10.250.50.51:8880/web + description: KokoroTTS TTS (AnaML port 8880) + icon: mdi-text-to-speech diff --git a/conf/homepage/settings.yaml b/conf/homepage/settings.yaml index c7350b7..e41f4a0 100755 --- a/conf/homepage/settings.yaml +++ b/conf/homepage/settings.yaml @@ -30,7 +30,10 @@ layout: Apps: UltraSeedbox: style: row - columns: 4 + columns: 3 + AI Systems: + style: row + columns: 3 ESH: - PFI-ANA: PFI-NH3: + PFI-ANA: diff --git a/conf/traefik-esh/certs/acme.json b/conf/traefik-esh/certs/acme.json index f8414e0..aeccf53 100644 --- a/conf/traefik-esh/certs/acme.json +++ b/conf/traefik-esh/certs/acme.json @@ -19,7 +19,7 @@ "domain": { "main": "vaultwarden.phasefinal.com" }, - "certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUdBRENDQk9pZ0F3SUJBZ0lTQlByYTJGS0xKRW0weGMxMlZDd0FGVXIxTUEwR0NTcUdTSWIzRFFFQkN3VUEKTURJeEN6QUpCZ05WQkFZVEFsVlRNUll3RkFZRFZRUUtFdzFNWlhRbmN5QkZibU55ZVhCME1Rc3dDUVlEVlFRRApFd0pTTXpBZUZ3MHlOREExTVRBd05EVTFOVEZhRncweU5EQTRNRGd3TkRVMU5UQmFNQ1V4SXpBaEJnTlZCQU1UCkduWmhkV3gwZDJGeVpHVnVMbkJvWVhObFptbHVZV3d1WTI5dE1JSUNJakFOQmdrcWhraUc5dzBCQVFFRkFBT0MKQWc4QU1JSUNDZ0tDQWdFQTNQOVRlQkx1U2dRUzZkZ1FxVzdXQ0hNUUdocXQ2Y0VTM3lTZnl6MlNNNUdBaVdhVwpXbnlmei9kbUhqS29nT3Q3dGt0OUM3MGhlTlZzQTZXUWVqdHhRMUFxWTFlZUl1V0xkOG5ZMXVTcE5LZ04zcjBKCmo3L1BmbkNpZFFEZVBWb2VTUmZFaHRzU0drNERTTDY3V2NIb0pZZWhIc29YS3R1YXdlNlkzdGliU0xXQzM4UDIKTitwb24vam54QzZmVDNHcHU5Q29nQ1R0aTFrd0tvcnltclNjdnZocDQrNDgzcVhuVDhQaUdYU1IzUmgyVGxCbgp0dllYcmFiL2N5aHdzZEpDd2dDZkMwcXNXZjZxcVZXWTd0b3ZTM1RtZ09HTjQ3QmZlNUpFZkZPOUw0Yi9uU2RCCnk4SzYvT2VvbjQwUmhVSWhvaDRQTGErRE5MQ29Vc01laFpmSnpsUjZPbFo2YXk2UG5OVk5rM3gzZEJSZzVLeUgKeGJHU0QzWmVTV3FJZGpDMUNpWUdjNUNDVWhHYlJZY1Jnb21JaXZnc0tLY1lVMUJVdS9ldnJGRGxjMVErajNxZwprWkU4b1V2QUFZdkRhcHlwVS9EdDRPRmJSMi9takswZzY0aWhJRWF1WlAvVVc2RkIvT2hDY1RUd01aaWQySHJNCmp4RElHOVBPZDNPNlNRaXpJR3c3MWNCbDJpR3NmTGk0TDAybUFTQ1JMMFJtL3U3Nm0xNDhnNDJxQVA1a0NlM1MKUUVQSE56YnljMWtSY3FId0JJY1c0eTN2TGcrdnllc3IxaXArTHRtVXMxZ3lHSkNhem1BQ0xnajMwZndtSWtOLwo5SG9ObmdGcXdVcUYwY3VEVjVNaHBhdW5ERHZtVlpRRFVieEhtUm5HVHg1dlVUU3ZOS0lFaGVsWmI1Y0NBd0VBCkFhT0NBaHN3Z2dJWE1BNEdBMVVkRHdFQi93UUVBd0lGb0RBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUkKS3dZQkJRVUhBd0l3REFZRFZSMFRBUUgvQkFJd0FEQWRCZ05WSFE0RUZnUVVBMHRCWG5NRlpuWFB0RnEzWGwzeQpyZjQzajA4d0h3WURWUjBqQkJnd0ZvQVVGQzZ6RjdkWVZzdXVVQWxBNWgrdm5Zc1V3c1l3VlFZSUt3WUJCUVVICkFRRUVTVEJITUNFR0NDc0dBUVVGQnpBQmhoVm9kSFJ3T2k4dmNqTXVieTVzWlc1amNpNXZjbWN3SWdZSUt3WUIKQlFVSE1BS0dGbWgwZEhBNkx5OXlNeTVwTG14bGJtTnlMbTl5Wnk4d0pRWURWUjBSQkI0d0hJSWFkbUYxYkhSMwpZWEprWlc0dWNHaGhjMlZtYVc1aGJDNWpiMjB3RXdZRFZSMGdCQXd3Q2pBSUJnWm5nUXdCQWdFd2dnRURCZ29yCkJnRUVBZFo1QWdRQ0JJSDBCSUh4QU84QWRnQklzT05yMnFaSE5BL2xhZ0w2blREckhGSUJ5MWJkTElIWnU3K3IKT2RpRWN3QUFBWTloRW5oZUFBQUVBd0JITUVVQ0lDaEhCQnEwK0RWMGNORFpJSG9HN0hHM05FQkNkU05obURBYgpINEVkamhpdEFpRUFyMmRuU0VzUU5TYnNqMkZ1ek1VbFhsd1hCTFhIN016bE1HTjYyNnRCMnJnQWRRQVptQkJ4CkNmRFdVaTR3Z05LZVAyUzdnMjRvelBrUFVvN3UzODVLUHhhMHlnQUFBWTloRW5oZUFBQUVBd0JHTUVRQ0lCekwKc0lXcXlzQU1lSkw1aWZDaC9ScGh5V24yUklSRFh3VmcwRTFNcFh2VEFpQVlkR1pVQ1RBLzZ1WDBXVXAxV3lpSAp6QXl4OGRsaVYyc2psTWtJR3o3NWNEQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFFdHlUK3lCVmRSWTdIRnhjCk1OMGNKeHArc3B6VDVDUzdjWEhHMDMrQVdhVWVCR2xaM1p2cHlQVFpOQ3AzQnZKVnZiZENRbU9Dbk5aOGsreHoKd0hENTJrMEJXVEx6L05BRUtvRUYvQU9aMzVIUFFlOGZvSzlMYnNOdlcyMW90QnZnTXJkRXdCUVZFTXp3WUNUZwpIaW8xa3g0b3B4UFNwOXhseDF5RW1vMmsvVU1DTkhGbUJIc3dqMGZyRmROOXZZODI0QmY5L0FIUFE0QWpXVnVTCjZPa3g4cTBZYWMrNi9Bb1Jsb0FPcUFaSXpZOERiZHdoV1RLNVpOM2IwUDlHZEZjL0Z1d1BhK3ozb1RYQTFmSXYKZEd4KzdnS2F0WnFXQ2FlWUdjSWFGcGVpOThBcEQvazNNNFM0V0JnNEppa1FJT09KTjRqaGVPeHd0MUpCQmpuSQp5aXVYZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCgotLS0tLUJFR0lOIENFUlRJRklDQVRFLS0tLS0KTUlJRkZqQ0NBdjZnQXdJQkFnSVJBSkVyQ0VyUERCaW5VL2JXTGlXblgxb3dEUVlKS29aSWh2Y05BUUVMQlFBdwpUekVMTUFrR0ExVUVCaE1DVlZNeEtUQW5CZ05WQkFvVElFbHVkR1Z5Ym1WMElGTmxZM1Z5YVhSNUlGSmxjMlZoCmNtTm9JRWR5YjNWd01SVXdFd1lEVlFRREV3eEpVMUpISUZKdmIzUWdXREV3SGhjTk1qQXdPVEEwTURBd01EQXcKV2hjTk1qVXdPVEUxTVRZd01EQXdXakF5TVFzd0NRWURWUVFHRXdKVlV6RVdNQlFHQTFVRUNoTU5UR1YwSjNNZwpSVzVqY25sd2RERUxNQWtHQTFVRUF4TUNVak13Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUM3QWhVb3pQYWdsTk1QRXV5TlZaTEQrSUx4bWFaNlFvaW5YU2FxdFN1NXhVeXhyNDVyK1hYSW85Y1AKUjVRVVZUVlhqSjZvb2prWjlZSThRcWxPYnZVN3d5N2JqY0N3WFBOWk9PZnR6Mm53V2dzYnZzQ1VKQ1dIK2pkeApzeFBuSEt6aG0rL2I1RHRGVWtXV3FjRlR6alRJVXU2MXJ1MlAzbUJ3NHFWVXE3WnREcGVsUURScks5TzhadXRtCk5IejZhNHVQVnltWitEQVhYYnB5Yi91QnhhM1NobGc5RjhmbkNidnhLL2VHM01IYWNWM1VSdVBNclNYQmlMeGcKWjNWbXMvRVk5NkpjNWxQL09vaTJSNlgvRXhqcW1BbDNQNTFUK2M4QjVmV21jQmNVcjJPay81bXprNTNjVTZjRwova2lGSGFGcHJpVjF1eFBNVWdQMTdWR2hpOXNWQWdNQkFBR2pnZ0VJTUlJQkJEQU9CZ05WSFE4QkFmOEVCQU1DCkFZWXdIUVlEVlIwbEJCWXdGQVlJS3dZQkJRVUhBd0lHQ0NzR0FRVUZCd01CTUJJR0ExVWRFd0VCL3dRSU1BWUIKQWY4Q0FRQXdIUVlEVlIwT0JCWUVGQlF1c3hlM1dGYkxybEFKUU9ZZnI1MkxGTUxHTUI4R0ExVWRJd1FZTUJhQQpGSG0wV2VaN3R1WGtBWE9BQ0lqSUdsajI2WnR1TURJR0NDc0dBUVVGQndFQkJDWXdKREFpQmdnckJnRUZCUWN3CkFvWVdhSFIwY0RvdkwzZ3hMbWt1YkdWdVkzSXViM0puTHpBbkJnTlZIUjhFSURBZU1CeWdHcUFZaGhab2RIUncKT2k4dmVERXVZeTVzWlc1amNpNXZjbWN2TUNJR0ExVWRJQVFiTUJrd0NBWUdaNEVNQVFJQk1BMEdDeXNHQVFRQgpndDhUQVFFQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQ0FRQ0Z5azVIUHFQM2hVU0Z2TlZuZUxLWVk2MTFUUjZXClBUTmxjbFF0Z2FEcXcrMzRJTDlmekxkd0FMZHVPL1plbE43a0lKK203NHV5QStlaXRSWThrYzYwN1RrQzUzd2wKaWtmbVpXNC9SdlRaOE02VUsrNVV6aEs4akNkTHVNR1lMNkt2elhHUlNnaTN5TGdqZXdRdENQa0lWejZEMlFRegpDa2NoZUFtQ0o4TXF5SnU1emx6eVpNakF2bm5BVDQ1dFJBeGVrcnN1OTRzUTRlZ2RSQ25iV1NEdFk3a2grQkltCmxKTlhvQjFsQk1FS0lxNFFEVU9Yb1JnZmZ1RGdoamUxV3JHOU1MK0hiaXNxL3lGT0d3WEQ5UmlYOEY2c3c2VzQKYXZBdXZEc3p1ZTVMM3N6ODVLK0VDNFkvd0ZWRE52Wm80VFlYYW82WjBmK2xRS2MwdDhEUVl6azFPWFZ1OHJwMgp5Sk1DNmFsTGJCZk9EQUxadllIN243ZG8xQVpsczRJOWQxUDRqbmtEclFveEIzVXFROWhWbDNMRUtRNzN4RjFPCnlLNUdoRERYOG9WZkdLRjV1K2RlY0lzSDRZYVR3N21QM0dGeEpTcXYzKzBsVUZKb2k1TGM1ZGExNDlwOTBJZHMKaENFeHJvTDErN21yeUlrWFBlRk01VGdPOXIwcnZaYUJGT3ZWMnowZ3AzNVowK0w0V1BsYnVFak4vbHhQRmluKwpIbFVqcjhnUnNJM3FmSk9RRnkvOXJLSUpSMFkvOE9td3QvOG9UV2d5MW1kZUhtbWprN2oxbllzdkM5SlNRNlp2Ck1sZGxUVEtCM3poVGhWMStYV1lwNnJqZDVKVzF6YlZXRWtMTnhFN0dKVGhFVUczc3pnQlZHUDdwU1dUVVRzcVgKbkxSYndIT29xN2hId2c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUdCakNDQk82Z0F3SUJBZ0lTQTVGUVBRdUYrdVgwT2JGc3NXVnE0Vzd2TUEwR0NTcUdTSWIzRFFFQkN3VUEKTURNeEN6QUpCZ05WQkFZVEFsVlRNUll3RkFZRFZRUUtFdzFNWlhRbmN5QkZibU55ZVhCME1Rd3dDZ1lEVlFRRApFd05TTVRBd0hoY05NalV3TXpBMk1qTTBNVEV4V2hjTk1qVXdOakEwTWpNME1URXdXakFsTVNNd0lRWURWUVFECkV4cDJZWFZzZEhkaGNtUmxiaTV3YUdGelpXWnBibUZzTG1OdmJUQ0NBaUl3RFFZSktvWklodmNOQVFFQkJRQUQKZ2dJUEFEQ0NBZ29DZ2dJQkFOei9VM2dTN2tvRUV1bllFS2x1MWdoekVCb2FyZW5CRXQ4a244czlrak9SZ0lsbQpsbHA4bjgvM1poNHlxSURyZTdaTGZRdTlJWGpWYkFPbGtIbzdjVU5RS21OWG5pTGxpM2ZKMk5ia3FUU29EZDY5CkNZKy96MzV3b25VQTNqMWFIa2tYeEliYkVocE9BMGkrdTFuQjZDV0hvUjdLRnlyYm1zSHVtTjdZbTBpMWd0L0QKOWpmcWFKLzQ1OFF1bjA5eHFidlFxSUFrN1l0Wk1DcUs4cHEwbkw3NGFlUHVQTjZsNTAvRDRobDBrZDBZZGs1UQpaN2IyRjYybS8zTW9jTEhTUXNJQW53dEtyRm4rcXFsVm1PN2FMMHQwNW9EaGplT3dYM3VTUkh4VHZTK0cvNTBuClFjdkN1dnpucUorTkVZVkNJYUllRHkydmd6U3dxRkxESG9XWHljNVVlanBXZW1zdWo1elZUWk44ZDNRVVlPU3MKaDhXeGtnOTJYa2xxaUhZd3RRb21Cbk9RZ2xJUm0wV0hFWUtKaUlyNExDaW5HRk5RVkx2M3I2eFE1WE5VUG85NgpvSkdSUEtGTHdBR0x3MnFjcVZQdzdlRGhXMGR2NW95dElPdUlvU0JHcm1ULzFGdWhRZnpvUW5FMDhER1luZGg2CnpJOFF5QnZUem5kenVra0lzeUJzTzlYQVpkb2hySHk0dUM5TnBnRWdrUzlFWnY3dStwdGVQSU9OcWdEK1pBbnQKMGtCRHh6YzI4bk5aRVhLaDhBU0hGdU10N3k0UHI4bnJLOVlxZmk3WmxMTllNaGlRbXM1Z0FpNEk5OUg4SmlKRApmL1I2RFo0QmFzRktoZEhMZzFlVElhV3Jwd3c3NWxXVUExRzhSNWtaeGs4ZWIxRTByelNpQklYcFdXK1hBZ01CCkFBR2pnZ0lnTUlJQ0hEQU9CZ05WSFE4QkFmOEVCQU1DQmFBd0hRWURWUjBsQkJZd0ZBWUlLd1lCQlFVSEF3RUcKQ0NzR0FRVUZCd01DTUF3R0ExVWRFd0VCL3dRQ01BQXdIUVlEVlIwT0JCWUVGQU5MUVY1ekJXWjF6N1JhdDE1ZAo4cTMrTjQ5UE1COEdBMVVkSXdRWU1CYUFGTHU4dzBlbDVMeXB4c09rY2d3UWphSTE0Y2pvTUZjR0NDc0dBUVVGCkJ3RUJCRXN3U1RBaUJnZ3JCZ0VGQlFjd0FZWVdhSFIwY0RvdkwzSXhNQzV2TG14bGJtTnlMbTl5WnpBakJnZ3IKQmdFRkJRY3dBb1lYYUhSMGNEb3ZMM0l4TUM1cExteGxibU55TG05eVp5OHdKUVlEVlIwUkJCNHdISUlhZG1GMQpiSFIzWVhKa1pXNHVjR2hoYzJWbWFXNWhiQzVqYjIwd0V3WURWUjBnQkF3d0NqQUlCZ1puZ1F3QkFnRXdnZ0VHCkJnb3JCZ0VFQWRaNUFnUUNCSUgzQklIMEFQSUFkd0I5V1I0UzRYZ3FleHhoWjN4ZS9malFoMXdVb0U2Vm5ya0QKTDlrT2pDNTV1QUFBQVpWdUN5L1FBQUFFQXdCSU1FWUNJUUR3bTk0Ukl0U2w0SUNNb1kwL242djU0RFVLTmRoOQpoanh3ZnVpbGhObFBjd0loQU8vUHhmTHR1UWx1Sy84bTR0SGxLS2c2eEJBWjFpY242TGtTUmNVMzVvSVZBSGNBCkUwcmZHcldZUWdsNERHL3ZUSHFScEJhM0kwbk9XRmRxMzY3YXA4S3I0Q0lBQUFHVmJnc3hDUUFBQkFNQVNEQkcKQWlFQXFCQU5vSkV5L0J6Ym1xellsTUdWMFBMK0ErdThPSnpPTGRpYWFOcTFJL2NDSVFEN2VITlZ6Ym5oeXNNVgp5TTVnbld4RGJ4N1B3S2FUdTRyRENhaFF5VDZzN2pBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWdON1hPYitkCjBuSEJLTWd1N1lKY3ZFbXY2U3RTbHhyTTZKQisybmR4ZGdtK1VVTHJXTUMzTTR6b1FjWDZIRXJMamRHcmxDb1AKZjI0bUNUV0JFc3VqeTErNTJrZkhPMEV4b0pNMFloZkNwUHQ5d1NmYnlDRU1FcGJ4bytmc3RuRmNGTWZDV2JSZQpQWUozR1UxUmF5dzdhdlpIVDZ0TkJmMFpPRzRKSlduQ3RYVFFDZmRSaTBQZUxuOVdwQlVuTjVSZEwyaHF1MmNLCkpHSnExUndUamlEbUsvVVBoTXRyYW16VGRaK2dPck02K1VldXEydEZFeHJabW1BOEhiLzk1ekJiUlBRWGFEMjQKakZXcG5IUFlHb01RZlN2cFJDZGJKU2k0WXZkOW9JS2NyR2VKZnBTYm5aWHY3QzBRanFvUTNNaHdnRUJiNnhkWApXN2cxM1FmbDB3UnpJUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KCi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlGQlRDQ0F1MmdBd0lCQWdJUVM2aFNrL2VhTDZKekJrdW9CSTExMERBTkJna3Foa2lHOXcwQkFRc0ZBREJQCk1Rc3dDUVlEVlFRR0V3SlZVekVwTUNjR0ExVUVDaE1nU1c1MFpYSnVaWFFnVTJWamRYSnBkSGtnVW1WelpXRnkKWTJnZ1IzSnZkWEF4RlRBVEJnTlZCQU1UREVsVFVrY2dVbTl2ZENCWU1UQWVGdzB5TkRBek1UTXdNREF3TURCYQpGdzB5TnpBek1USXlNelU1TlRsYU1ETXhDekFKQmdOVkJBWVRBbFZUTVJZd0ZBWURWUVFLRXcxTVpYUW5jeUJGCmJtTnllWEIwTVF3d0NnWURWUVFERXdOU01UQXdnZ0VpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElCRHdBd2dnRUsKQW9JQkFRRFBWK1hteEZRUzdiUkgvc2tuV0haR1VDaU1IVDZJM3dXZDFiVVlLYjNkdFZxLyt2Yk9vNzZ2QUNGTApZbHBhUEFFdnhWZ0Q5b24vamhGRDY4RzE0QlFIbG85dkg5Zm51b0U1Q1hWbHQ4S3ZHRnMzSmlqbm8vUUhLMjBhCi82dFl2Sld1UVAvcHkxZkV0VnQvZUEwWVlid1g1MVRHdTBtUnpXNFkwWUNGN3FabE5yeDA2cnhRVE9yOElmTTQKRnBPVXVyRFRhemdHelJZU2VzcFNkY2l0ZHJMQ25GMllSVnh2WVh2R0xlNDhFMUtHQWRsWDVqZ2MzNDIxSDVLUgptdWRLSE14RnFISlY4TERtb3dmcy9hY2JacDQvU0l0eGhIRll5VHI2NzE3eVcwUXJQSFRuajdKSHdRZHF6WnEzCkRaYjNFb0VtVVZRSzdHSDI5L1hpOG9ySWxRMk5BZ01CQUFHamdmZ3dnZlV3RGdZRFZSMFBBUUgvQkFRREFnR0cKTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQ0JnZ3JCZ0VGQlFjREFUQVNCZ05WSFJNQkFmOEVDREFHQVFILwpBZ0VBTUIwR0ExVWREZ1FXQkJTN3ZNTkhwZVM4cWNiRHBISU1FSTJpTmVISTZEQWZCZ05WSFNNRUdEQVdnQlI1CnRGbm1lN2JsNUFGemdBaUl5QnBZOXVtYmJqQXlCZ2dyQmdFRkJRY0JBUVFtTUNRd0lnWUlLd1lCQlFVSE1BS0cKRm1oMGRIQTZMeTk0TVM1cExteGxibU55TG05eVp5OHdFd1lEVlIwZ0JBd3dDakFJQmdabmdRd0JBZ0V3SndZRApWUjBmQkNBd0hqQWNvQnFnR0lZV2FIUjBjRG92TDNneExtTXViR1Z1WTNJdWIzSm5MekFOQmdrcWhraUc5dzBCCkFRc0ZBQU9DQWdFQWtySG5RVGZyZVoyQjVzM2lKZUU2SU9tUVJKV2pnVnpQdzEzOXZhQncxYkdXS0NJTDB2SW8Kend6bjFPWkRqQ1FpSGNGQ2t0RUpyNTlMOU1od1R5QVdzVnJkQWZZZitCOWhheFFuc0hLTlk2N3U0czVMenpmZAp1NlBVemVldFVLMjl2K1BzUG1JMmNKa3hwK2lOM2VwaTRoS3U5WnpVUFN3TXF0Q2NlYjdxUFZ4RWJwWXhZMXA5CjFuNVBKS0JMQlg5ZWI5TFU2bDh6U3hQV1Y3YkszbEc0WGFNSmduVDl4M2llczdtc0Z0cEtLNWJEdG90aWovbDAKR2FLZUE5N3BiNXV3RDlLZ1d2YUZYTUlFdDhqVlRqTEV2d1JkdkNuMjk0R1BERjA4VThsQWtJdjd0Z2hsdWFRaAoxUW5sRTRTRU40TE9FQ2o4ZHNJR0pYcEdVazNhVTNLa0p6OWljS3krYVVnQSsyY1AyMXVoNk5jRElTM1h5ZmFaClFqbURROTkzQ2hJSThTWFd1cFFaVkJpSXBjV080UnFaazNscjdCejVNVUN3ekRJQTM1OWU1N1NTcTVDQ2tZME4KNEI2VnVsazdMa3Rmd3JkR05WSTVCc0M5cXF4U3dTS2dSSmVaOXd5Z0lhZWhiSEZIRmhjQmFNREtwaVpsQkh5egpyc25ubEZYQ2I1czhIS241THNVZ0d2QjI0TDdzR05aUDJDWDdkaEhvditZaEQram96TFcycDlXNDk1OUJ6MkVpClJtcUR0bWlYTG56cVRwWGJJK3N1eUNzb2hLUmc2VW4wUkM0NytjcGlWd0hpWFpBVytjbjhlaU5JanFiVmdYTHgKS1BwZHp2dnRUbk9QbEM3U1FaU1ltZHVucjNCZjliNzdBaUMvWmlkc3RLMzZkUklMS3o3T0E1ND0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=", "key": "LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlKS0FJQkFBS0NBZ0VBM1A5VGVCTHVTZ1FTNmRnUXFXN1dDSE1RR2hxdDZjRVMzeVNmeXoyU001R0FpV2FXCldueWZ6L2RtSGpLb2dPdDd0a3Q5QzcwaGVOVnNBNldRZWp0eFExQXFZMWVlSXVXTGQ4blkxdVNwTktnTjNyMEoKajcvUGZuQ2lkUURlUFZvZVNSZkVodHNTR2s0RFNMNjdXY0hvSlllaEhzb1hLdHVhd2U2WTN0aWJTTFdDMzhQMgpOK3Bvbi9qbnhDNmZUM0dwdTlDb2dDVHRpMWt3S29yeW1yU2N2dmhwNCs0ODNxWG5UOFBpR1hTUjNSaDJUbEJuCnR2WVhyYWIvY3lod3NkSkN3Z0NmQzBxc1dmNnFxVldZN3RvdlMzVG1nT0dONDdCZmU1SkVmRk85TDRiL25TZEIKeThLNi9PZW9uNDBSaFVJaG9oNFBMYStETkxDb1VzTWVoWmZKemxSNk9sWjZheTZQbk5WTmszeDNkQlJnNUt5SAp4YkdTRDNaZVNXcUlkakMxQ2lZR2M1Q0NVaEdiUlljUmdvbUlpdmdzS0tjWVUxQlV1L2V2ckZEbGMxUStqM3FnCmtaRThvVXZBQVl2RGFweXBVL0R0NE9GYlIyL21qSzBnNjRpaElFYXVaUC9VVzZGQi9PaENjVFR3TVppZDJIck0KanhESUc5UE9kM082U1FpeklHdzcxY0JsMmlHc2ZMaTRMMDJtQVNDUkwwUm0vdTc2bTE0OGc0MnFBUDVrQ2UzUwpRRVBITnpieWMxa1JjcUh3QkljVzR5M3ZMZyt2eWVzcjFpcCtMdG1VczFneUdKQ2F6bUFDTGdqMzBmd21Ja04vCjlIb05uZ0Zxd1VxRjBjdURWNU1ocGF1bkREdm1WWlFEVWJ4SG1SbkdUeDV2VVRTdk5LSUVoZWxaYjVjQ0F3RUEKQVFLQ0FnQmtUWnBqeUN2UStqSmZZa3FGckNHR3FqcW5ybTQ2eHYrNnVaT3hHaHZ1UGQ3Wi9lN0YyUVJyem56Ugp2ZXBPd1JKZ05iam1pQXZXSFArdVZBblVBSUN5cllMZm5kZlBQT0hsRjM3TVlmSU9UU3dtYVNRYTAxTG9yMVI4CnlFMFdDWDN2Yk5NczVlYzhleVh3Y1dqMUh4WXZXblNkVmRuWUFONG5vUlJQS0g2cUxIL2U4Y0VodGNtUXVkYnYKYXIyeHdBUHFrNVMydkl2NEVCM1ZZVVVsUkU1VU9zbE13MGRyUWw5UEM3Zm1GOHRRVHhiN0NuRllVQytGQ0dPdQpyNjhlZGpFSWZtR3hMVTQyZG1pYy9KV3g2dU5HV3lOM1lXZ1Y3R29aMnRRc25aRWpMaUY4QVdKU2llcDJlT3BHCnFDOUlqVEJZdFUzc1RWbStvMk55Vk03WWtZRHN4ZThDc0c0UG5jdWwyRmw0UUU5R245bTV1d004MVNtRlQ1a3YKZkdySTRjTmY2bE9SZldjaTFVdzlydVhtNVJvWW5wVzVVNUhwaERQUmE2elMyY2lleEtzemM4ZTBOR05LSXA0RApqbVRYNVN0VzU0NzFPVGdVNVJoek8rbE83aFFwaTZIY29uTDRjRExUbk8yZzhrQ2s1VUFsNkVzU0ovaFV4dFF4ClJGdzJad1pSUEtTcEM2SUd0TFhlaGhoQ0xYY25aNUY1cWNBMmt4NFBydlFqakpuM3U3Y1ZqSDcvb3lpSTdIT0wKb2pScUNXTzhIUHNkY3d3cys3bDRZbTJvRFV2ZitDdDNGTGFHV1VSN3pKYjg2MVZXalBQSVRRWFZqdjFnN1R6Ngo5R0JVT0RqNTVlQUg3d2lKczFTSVNtc2pzb0ZBZm9aWVYyM3FkdGVTQ045aCs2eVRZUUtDQVFFQTdUaHFBWjNaCnRoaUh6NmtrN2ZtREdKUThvSHJxbnVMcXV0aS9aZGlpVStHWk55RHhScnBwREE3Ull3NXp2czFvSktqREZEUXYKM1dYTlFJeXRicUJzRmpQckFsYnBpNE53aVFGSFNxSXN0NTFMMVZWWmhPQUNjZlQrTXlrcGFyWU1UbWFYU3VXdQpqckZqdmVDZmRjVHhObkRxZ0pJdEhTbk9nTG1FcTlsdGRPN21hWnlaUmZSRFMvSjFPUElSK1loN3BDTE9HZzA3CjhBZE5mRm5FVkFaM0VaVThhWlAvWElNeE54bjV0OHphdThkcHBaTlpkUEN5QmhKekpUd0VuZHdSSDJTdHBxZXAKN0F5RXA1cXhtK0hpbE1MZGtJODNCVWdiR3pLTW1PcWJFN2kybXY2c0tSM1NGL0VySlVJOXVublo5T0dpd2I2WAoxZURJMkY3UHRUTW5wd0tDQVFFQTduNGhuYkVkR24wWHNLaTlFU0FVWFNDUWorMSt1d1B5bjkrU0pYRFh2VW9nCm5JVUlJdlhTNWpZM2didElEUVNzR2pyV0UwV29hTnhoVUt5aWVyaU9ta3QzS2x6OGxJK2dENFd3M0hrNU1nbmoKVlVsS2FzelMxN08xSGRBL1MzOVlZRUNBd09QZ09tQk00VGRkVmg4bVJiYW1ObmNOODdOQzBzQXcyc2hkbm9TMwpraFdmQlNMN3RJYkl4RWlOV2w2UDBQVGZCQ09PSS83eElVNzRIL2hHZnZUSDdReGNUaHBwRFRVYkpEY2EyMms4ClEzejFlNnJmU2RkRzR2QzMxV1NsYzRRV21GcGJGelJNUnB4ditFSk5lR1F0cjlsNHdyckowZTlURGV6NFlvOU4Kb0JXUlFCY0RQOWxyOUVudHprKy9aM3VvZHh3ckhhTkFnSGlxcHo5MmtRS0NBUUI2ejQ4S0FUZTZMMTc0WW1BdApGOVVILzQ2WG9xc2UwT21uREJtaTE1SEtqV3d0LzA4S1IrMmtnWE5qcmhLOFFFbGZXVU9OalNzT211cTFOVitBCmUyc1ozNDBXYS9xQzhPeHM4WTJBRlEvRGk1cTcrbkRhK3NJcFR5WGZSTHNkZE54UUpvckRDci9oUGZNZVZWRVkKdm5vR3JsU3BkWVFIcWlJdndGdndRQ09MdXpic2pGZEp3UmlxRS84ZUdTeTNIREt1bWhwTG9IaGNYdHQ5dWxlTApETUhPQjQzOE50T29pSDhOUU5Sb2xKVFZUSHJrYnJHTWVpUWdRcUw4THVOUStxS2V0eGV6eE8rU3RqUmpOUklvCldyeGNPYnBOWWVlaFEyQk5KMUZreFdpOXdBNUJsZ0Y1VStmMTN6UndHS2d1aDNFUWQxUTBxOENkeUw4U1RadUkKK3MvWEFvSUJBRDNlR0loWXpzejFVSFR5Z1FGMVNmTVNwSTNCdFZOOFphOVZod3NSWjlYaDZlM1FrTmpJM21uNwovSkE1N2luNllVNzRubG9uZ3RXWS9lRzR0dm1ROE9WVDJGajBBRTNscUViK2ptL1RQcVFkYm96TVUzSzdLYUx0Cktubk9jT3o3M3dneEUzVjJaOCtjOWJTaThTS0xPQmx6bFZDaHQ4dlZYK3RlRWc1ZlZmSHVTZFNxcVRMaTdWcmEKY0RDREJiQkF3WndhT2RSUUNPcUxreS9wMVhJdHJOUDRXZmpEY1JxTnZWekF2d2E1Q00yTVVpYkx2cjdUQjlPVwo5ZnVmS0lGQjk2MnN3VlBLZE1EalB6bytFTW5kSVUydTV5OHNBaWk1M2VzSTQ0bkVSSGNFNThVMGN4YW1JYUNwCm5WaWs2UHpSTVR6K0ZpaTM5UE5lU3poSWxUU0h3UkVDZ2dFQkFJdDc1eTZ5dVNtUm1RSmpaeXBmbFB3Sm5UQWIKOVgwWFk4bVRFU1NBMW55WkFmeTRHeEVYYW1saWhmb3g1VlRRaEpRYzl2dlhUQ0txTWNFczl4RlBVZ1NxTTRzMwo1aUw4dkYxK0w5VFlyNjdnR3dRMjFkVlBjRXVyRkI2NVJoYURUaXhZVEVwQWdXUkJpOGVFWUowVjZHNG83N1AvCkRlcFlsZnZDbjEvNG4xblBwd0xaV01kL0dtaS9tejZOUGVEWHFqZEtxRCsrLzdpa29CUWVnMGF2eHJ4NWZ5ME8KRy9CQ1czcUYrSVd3RW1kMTg3aUFBYStSZldrMnlvTkQ4bzhHY2htaVAzV2crSWhIM0hYQXJRZ3RXelU1VitkawowRXFDYlVVMjVsSzdBNHRacDNOZHNEdlhaNTZCc1pIRDYrWWdUQm9YVlc5TGE4MGxFOW53RHhyVDNqdz0KLS0tLS1FTkQgUlNBIFBSSVZBVEUgS0VZLS0tLS0K", "Store": "default" }