Auto-sync: 2026-03-20 10:35:24
This commit is contained in:
@@ -83,3 +83,9 @@ remote: . Processing 1 references
|
||||
remote: Processed 1 references in total
|
||||
To gitea:Micha/homepage.git
|
||||
17ec644..07909d4 master -> master
|
||||
[master a21d6dc] Auto-sync: 2026-03-20 10:30:24
|
||||
1 file changed, 6 insertions(+)
|
||||
remote: . Processing 1 references
|
||||
remote: Processed 1 references in total
|
||||
To gitea:Micha/homepage.git
|
||||
07909d4..a21d6dc master -> master
|
||||
|
||||
+133
-87
@@ -1,112 +1,158 @@
|
||||
/* KalliLab custom.css
|
||||
Cyber-dark look with electric cyan accents */
|
||||
|
||||
:root {
|
||||
--kalilab-bg-1: #0d1117;
|
||||
--kalilab-bg-2: #0f1923;
|
||||
--kalilab-bg-3: #071018;
|
||||
--kalilab-primary: #00b4d8;
|
||||
--kalilab-primary-2: #0077b6;
|
||||
--kalilab-text: #e6f7ff;
|
||||
--kalilab-muted: #8fb8c7;
|
||||
--kalilab-bg: #0b1220;
|
||||
--kalilab-bg-2: #0f1726;
|
||||
--kalilab-card: rgba(16, 24, 38, 0.82);
|
||||
--kalilab-card-hover: rgba(20, 31, 49, 0.9);
|
||||
--kalilab-border: rgba(0, 180, 216, 0.18);
|
||||
--kalilab-glow: 0 0 18px rgba(0, 180, 216, 0.16);
|
||||
--kalilab-border-strong: rgba(0, 180, 216, 0.35);
|
||||
--kalilab-glow: 0 0 0 1px rgba(0, 180, 216, 0.08), 0 8px 24px rgba(0, 0, 0, 0.32);
|
||||
--kalilab-glow-hover: 0 0 0 1px rgba(0, 180, 216, 0.18), 0 14px 30px rgba(0, 0, 0, 0.42);
|
||||
--kalilab-text: #e6f7ff;
|
||||
--kalilab-text-soft: #9fb7c9;
|
||||
--kalilab-accent: #00b4d8;
|
||||
--kalilab-accent-2: #48cae4;
|
||||
--kalilab-danger: #b91c1c;
|
||||
--kalilab-danger-bg: rgba(185, 28, 28, 0.14);
|
||||
}
|
||||
|
||||
body {
|
||||
/* Gesamthintergrund */
|
||||
body,
|
||||
html,
|
||||
#page_container {
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(0, 180, 216, 0.12), transparent 26%),
|
||||
radial-gradient(circle at top right, rgba(0, 119, 182, 0.14), transparent 22%),
|
||||
linear-gradient(135deg, var(--kalilab-bg-1) 0%, var(--kalilab-bg-2) 48%, var(--kalilab-bg-3) 100%) !important;
|
||||
color: var(--kalilab-text);
|
||||
radial-gradient(circle at top left, rgba(0, 180, 216, 0.08), transparent 28%),
|
||||
radial-gradient(circle at top right, rgba(72, 202, 228, 0.06), transparent 24%),
|
||||
linear-gradient(180deg, #08111d 0%, #0b1220 45%, #0a0f18 100%) !important;
|
||||
color: var(--kalilab-text) !important;
|
||||
}
|
||||
|
||||
#page_container::before {
|
||||
content: "";
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
background-image:
|
||||
linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
|
||||
background-size: 36px 36px;
|
||||
mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
|
||||
opacity: 0.35;
|
||||
/* Gruppenüberschriften */
|
||||
h2, .group-title {
|
||||
color: #dff6ff !important;
|
||||
font-weight: 700 !important;
|
||||
letter-spacing: 0.2px;
|
||||
}
|
||||
|
||||
.group-title,
|
||||
.services-group .group-name,
|
||||
.bookmark-group .group-name {
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: #d9f7ff !important;
|
||||
}
|
||||
|
||||
.service,
|
||||
.bookmark {
|
||||
background: linear-gradient(180deg, rgba(15, 25, 35, 0.82) 0%, rgba(13, 17, 23, 0.88) 100%) !important;
|
||||
/* Service-Karten */
|
||||
.service-card,
|
||||
.bookmark,
|
||||
.information-widget,
|
||||
.widget-card,
|
||||
div[class*="service_"],
|
||||
div[class*="bookmark_"] {
|
||||
background: linear-gradient(180deg, rgba(18, 27, 43, 0.88) 0%, rgba(12, 19, 31, 0.92) 100%) !important;
|
||||
border: 1px solid var(--kalilab-border) !important;
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), var(--kalilab-glow);
|
||||
border-radius: 18px !important;
|
||||
}
|
||||
|
||||
.service:hover,
|
||||
.bookmark:hover {
|
||||
transform: translateY(-2px);
|
||||
border-color: rgba(0, 180, 216, 0.34) !important;
|
||||
box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 22px rgba(0, 180, 216, 0.22);
|
||||
}
|
||||
|
||||
.service-name,
|
||||
.bookmark-name,
|
||||
.information-widget .widget-title,
|
||||
.information-widget .title {
|
||||
color: var(--kalilab-text) !important;
|
||||
}
|
||||
|
||||
.service-description,
|
||||
.bookmark-description,
|
||||
.information-widget .description,
|
||||
p,
|
||||
span {
|
||||
color: var(--kalilab-muted);
|
||||
}
|
||||
|
||||
.status .status-dot {
|
||||
box-shadow: 0 0 10px currentColor;
|
||||
}
|
||||
|
||||
.information-widget {
|
||||
background: rgba(10, 19, 28, 0.72) !important;
|
||||
border: 1px solid rgba(0, 180, 216, 0.14) !important;
|
||||
border-radius: 18px !important;
|
||||
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
|
||||
}
|
||||
|
||||
.search-container input,
|
||||
.quick-launch input {
|
||||
background: rgba(8, 15, 24, 0.88) !important;
|
||||
border: 1px solid rgba(0, 180, 216, 0.22) !important;
|
||||
color: var(--kalilab-text) !important;
|
||||
border-radius: 16px !important;
|
||||
box-shadow: var(--kalilab-glow) !important;
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
transition:
|
||||
transform 0.18s ease,
|
||||
box-shadow 0.18s ease,
|
||||
border-color 0.18s ease,
|
||||
background 0.18s ease !important;
|
||||
}
|
||||
|
||||
.search-container input:focus,
|
||||
.quick-launch input:focus {
|
||||
border-color: rgba(0, 180, 216, 0.55) !important;
|
||||
box-shadow: 0 0 0 1px rgba(0, 180, 216, 0.25), 0 0 18px rgba(0, 180, 216, 0.16) !important;
|
||||
/* Hover */
|
||||
.service-card:hover,
|
||||
.bookmark:hover,
|
||||
.widget-card:hover,
|
||||
div[class*="service_"]:hover,
|
||||
div[class*="bookmark_"]:hover {
|
||||
transform: translateY(-2px);
|
||||
background: linear-gradient(180deg, rgba(22, 33, 52, 0.94) 0%, rgba(14, 22, 36, 0.96) 100%) !important;
|
||||
border-color: var(--kalilab-border-strong) !important;
|
||||
box-shadow: var(--kalilab-glow-hover) !important;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #b8f3ff;
|
||||
/* Titel in Karten */
|
||||
.service-card h3,
|
||||
.service-card .title,
|
||||
.bookmark h3,
|
||||
div[class*="service_"] h3 {
|
||||
color: #f2fbff !important;
|
||||
font-weight: 700 !important;
|
||||
font-size: 1rem !important;
|
||||
}
|
||||
|
||||
/* Beschreibungen */
|
||||
.service-card p,
|
||||
.service-card .description,
|
||||
.bookmark p,
|
||||
div[class*="service_"] p {
|
||||
color: var(--kalilab-text-soft) !important;
|
||||
font-size: 0.88rem !important;
|
||||
}
|
||||
|
||||
/* Statuspunkte oben rechts cleaner */
|
||||
.status,
|
||||
div[class*="status_"] {
|
||||
filter: saturate(1.05) brightness(1.02);
|
||||
}
|
||||
|
||||
/* API-Fehler / Warnbalken entschärfen */
|
||||
.error,
|
||||
[class*="error"],
|
||||
[class*="failed"],
|
||||
[class*="danger"] {
|
||||
background: var(--kalilab-danger-bg) !important;
|
||||
color: #fecaca !important;
|
||||
border: 1px solid rgba(239, 68, 68, 0.22) !important;
|
||||
border-radius: 10px !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
/* Suche oben */
|
||||
input,
|
||||
input[type="text"],
|
||||
.search-input {
|
||||
background: rgba(20, 25, 35, 0.86) !important;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08) !important;
|
||||
border-radius: 12px !important;
|
||||
color: #eefaff !important;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
input[type="text"]:focus,
|
||||
.search-input:focus {
|
||||
border-color: rgba(0, 180, 216, 0.45) !important;
|
||||
box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12) !important;
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
/* Obere Widget-Leiste etwas ruhiger */
|
||||
.info-widget,
|
||||
div[class*="resources"],
|
||||
div[class*="datetime"],
|
||||
div[class*="search"] {
|
||||
background: transparent !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
/* Icons in den Karten etwas cleaner */
|
||||
.service-card svg,
|
||||
.service-card img,
|
||||
.bookmark svg,
|
||||
.bookmark img {
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
/* Scrollbar */
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #0b1220;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: linear-gradient(180deg, rgba(0, 180, 216, 0.65), rgba(0, 119, 182, 0.75));
|
||||
background: rgba(0, 180, 216, 0.25);
|
||||
border-radius: 999px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: rgba(0, 180, 216, 0.4);
|
||||
}
|
||||
@@ -204696,3 +204696,902 @@
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:00:01.958Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:34:55.006Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.006Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.007Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.007Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.007Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.008Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.008Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.008Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.009Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.010Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.017Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.025Z] warn: <resources> Drive not found for target: /mnt/user
|
||||
[2026-03-20T09:34:55.025Z] warn: <resources> Drive not found for target: /mnt/cache
|
||||
[2026-03-20T09:34:55.037Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.044Z] error: <service-helpers> Error getting services from Docker server 'my-docker': [Error: connect ENOENT /var/run/docker.sock] {
|
||||
errno: -2,
|
||||
code: 'ENOENT',
|
||||
syscall: 'connect',
|
||||
address: '/var/run/docker.sock'
|
||||
}
|
||||
[2026-03-20T09:34:55.046Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.048Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.050Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.059Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.061Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.065Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.068Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.071Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.074Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.092Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.095Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.100Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.107Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.115Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.120Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.165Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.186Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.195Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.202Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.202Z] error: <httpProxy> Error calling http://kallilabcore.local:8080/api/summary...
|
||||
[2026-03-20T09:34:55.202Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.206Z] error: <service-helpers> Error getting services from Docker server 'my-docker': [Error: connect ENOENT /var/run/docker.sock] {
|
||||
errno: -2,
|
||||
code: 'ENOENT',
|
||||
syscall: 'connect',
|
||||
address: '/var/run/docker.sock'
|
||||
}
|
||||
[2026-03-20T09:34:55.207Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.211Z] error: <httpProxy> Error calling http://kallilabcore.local:32400/status/sessions...
|
||||
[2026-03-20T09:34:55.211Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.211Z] error: <plexProxyHandler> HTTP 500 communicating with Plex. Data: [object Object]
|
||||
[2026-03-20T09:34:55.211Z] error: <servicesProxy> TypeError: The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received an instance of Object
|
||||
at Function.from (node:buffer:328:9)
|
||||
at p (/app/.next/server/pages/api/services/proxy.js:58:46884)
|
||||
at process.processTicksAndRejections (node:internal/process/task_queues:103:5)
|
||||
at async l (/app/.next/server/pages/api/services/proxy.js:41:19184)
|
||||
at async tA (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:105856)
|
||||
at async tT.render (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:106571)
|
||||
at async Module.m (/app/.next/server/pages/api/services/proxy.js:58:29770)
|
||||
at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:766:9)
|
||||
at async NextNodeServer.handleCatchallRenderRequest (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:390:37)
|
||||
at async NextNodeServer.handleRequestImpl (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/base-server.js:916:17)
|
||||
[2026-03-20T09:34:55.221Z] error: <httpProxy> Error calling http://kallilabcore.local:8080/api/settings...
|
||||
[2026-03-20T09:34:55.222Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.233Z] warn: <resources> Drive not found for target: /mnt/disk1
|
||||
[2026-03-20T09:34:55.237Z] error: <credentialedProxyHandler> HTTP Error 401 calling https://api.tailscale.com/api/v2/device/YOUR_TAILSCALE_DEVICE_ID
|
||||
[2026-03-20T09:34:55.238Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.241Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.248Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.248Z] error: <httpProxy> Error calling http://kallilabcore.local:8543/admin/api.php...
|
||||
[2026-03-20T09:34:55.248Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.250Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.255Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.255Z] error: <httpProxy> Error calling http://kallilabcore.local:2283/api/server-info/version...
|
||||
[2026-03-20T09:34:55.255Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.255Z] error: <httpProxy> Error calling http://kallilabcore.local:19999/api/v1/info...
|
||||
[2026-03-20T09:34:55.255Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.255Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:2283/api/server-info/version
|
||||
[2026-03-20T09:34:55.258Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.267Z] error: <httpProxy> Error calling http://kallilabcore.local:20211/devices/totals...
|
||||
[2026-03-20T09:34:55.268Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.268Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:20211/devices/totals
|
||||
[2026-03-20T09:34:55.274Z] error: <httpProxy> Error calling http://kallilabcore.local:8088/client...
|
||||
[2026-03-20T09:34:55.274Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.274Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:8088/client
|
||||
[2026-03-20T09:34:55.282Z] error: <httpProxy> Error calling http://kallilabcore.local:8088/message...
|
||||
[2026-03-20T09:34:55.282Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.282Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:8088/message
|
||||
[2026-03-20T09:34:55.293Z] error: <httpProxy> Error calling http://kallilabcore.local:8088/application...
|
||||
[2026-03-20T09:34:55.293Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.293Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:8088/application
|
||||
[2026-03-20T09:34:55.294Z] error: <httpProxy> Error calling http://kallilabcore.local:8000/api/statistics/...
|
||||
[2026-03-20T09:34:55.294Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.294Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:8000/api/statistics/?format=json
|
||||
[2026-03-20T09:34:55.340Z] error: <httpProxy> Error calling http://kallilabcore.local:9935/api/households/statistics...
|
||||
[2026-03-20T09:34:55.341Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.341Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:9935/api/households/statistics
|
||||
[2026-03-20T09:34:55.357Z] error: <httpProxy> Error calling http://kallilabcore.local:2283/api/server-info/stats...
|
||||
[2026-03-20T09:34:55.357Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.357Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:2283/api/server-info/stats
|
||||
[2026-03-20T09:34:55.363Z] error: <httpProxy> Error calling https://kallilabcore.local:9443/api/endpoints/1/docker/containers/json...
|
||||
[2026-03-20T09:34:55.363Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.363Z] error: <credentialedProxyHandler> HTTP Error 500 calling https://kallilabcore.local:9443/api/endpoints/1/docker/containers/json?all=1
|
||||
[2026-03-20T09:34:55.384Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:34:55.384Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.384Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:34:55.473Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.473Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.474Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.474Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.474Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.475Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.475Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.475Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.476Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.476Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.476Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.477Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.477Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.477Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.477Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.477Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.478Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.478Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.478Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.478Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.478Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.478Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.479Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.488Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/system...
|
||||
[2026-03-20T09:34:55.488Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.488Z] error: <httpProxy> Error calling http://kallilabcore.local:3001/api/status-page/heartbeat/YOUR_UPTIME_STATUS_PAGE_SLUG...
|
||||
[2026-03-20T09:34:55.488Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.488Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/system
|
||||
[2026-03-20T09:34:55.495Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.495Z] warn: <resources> Drive not found for target: /mnt/user
|
||||
[2026-03-20T09:34:55.495Z] warn: <resources> Drive not found for target: /mnt/cache
|
||||
[2026-03-20T09:34:55.512Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.513Z] warn: <resources> Drive not found for target: /mnt/disk1
|
||||
[2026-03-20T09:34:55.514Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.515Z] error: <httpProxy> Error calling http://kallilabcore.local:3001/api/status-page/YOUR_UPTIME_STATUS_PAGE_SLUG...
|
||||
[2026-03-20T09:34:55.515Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.519Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.522Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.528Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.538Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.541Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.545Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.547Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.549Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.552Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.554Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.557Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.559Z] error: <dockerStatusService> Error: connect ENOENT /var/run/docker.sock
|
||||
at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16)
|
||||
at PipeConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17)
|
||||
[2026-03-20T09:34:55.565Z] error: <service-helpers> Error getting services from Docker server 'my-docker': [Error: connect ENOENT /var/run/docker.sock] {
|
||||
errno: -2,
|
||||
code: 'ENOENT',
|
||||
syscall: 'connect',
|
||||
address: '/var/run/docker.sock'
|
||||
}
|
||||
[2026-03-20T09:34:55.742Z] error: <httpProxy> Error calling https://kallilabcore.local:9443/api/endpoints/1/docker/containers/json...
|
||||
[2026-03-20T09:34:55.743Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.743Z] error: <credentialedProxyHandler> HTTP Error 500 calling https://kallilabcore.local:9443/api/endpoints/1/docker/containers/json?all=1
|
||||
[2026-03-20T09:34:55.788Z] error: <httpProxy> Error calling http://kallilabcore.local:3001/api/status-page/YOUR_UPTIME_STATUS_PAGE_SLUG...
|
||||
[2026-03-20T09:34:55.788Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.789Z] error: <credentialedProxyHandler> HTTP Error 401 calling https://api.tailscale.com/api/v2/device/YOUR_TAILSCALE_DEVICE_ID
|
||||
[2026-03-20T09:34:55.799Z] error: <httpProxy> Error calling http://kallilabcore.local:6969/graphql...
|
||||
[2026-03-20T09:34:55.799Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.808Z] error: <httpProxy> Error calling http://kallilabcore.local:3001/api/status-page/heartbeat/YOUR_UPTIME_STATUS_PAGE_SLUG...
|
||||
[2026-03-20T09:34:55.808Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.819Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:34:55.819Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.819Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:34:55.829Z] error: <httpProxy> Error calling http://kallilabcore.local:8080/api/summary...
|
||||
[2026-03-20T09:34:55.829Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.847Z] error: <httpProxy> Error calling http://kallilabcore.local:20211/devices/totals...
|
||||
[2026-03-20T09:34:55.847Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.847Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:20211/devices/totals
|
||||
[2026-03-20T09:34:55.849Z] error: <httpProxy> Error calling http://kallilabcore.local:8080/api/settings...
|
||||
[2026-03-20T09:34:55.849Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.864Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/system...
|
||||
[2026-03-20T09:34:55.864Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.864Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/system
|
||||
[2026-03-20T09:34:55.868Z] error: <httpProxy> Error calling http://kallilabcore.local:8088/application...
|
||||
[2026-03-20T09:34:55.868Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.868Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:8088/application
|
||||
[2026-03-20T09:34:55.881Z] error: <httpProxy> Error calling http://kallilabcore.local:19999/api/v1/info...
|
||||
[2026-03-20T09:34:55.881Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.890Z] error: <httpProxy> Error calling http://kallilabcore.local:8088/client...
|
||||
[2026-03-20T09:34:55.890Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.891Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:8088/client
|
||||
[2026-03-20T09:34:55.910Z] error: <httpProxy> Error calling http://kallilabcore.local:8000/api/statistics/...
|
||||
[2026-03-20T09:34:55.910Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.910Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:8000/api/statistics/?format=json
|
||||
[2026-03-20T09:34:55.911Z] error: <httpProxy> Error calling http://kallilabcore.local:8088/message...
|
||||
[2026-03-20T09:34:55.911Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.912Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:8088/message
|
||||
[2026-03-20T09:34:55.922Z] error: <httpProxy> Error calling http://kallilabcore.local:32400/status/sessions...
|
||||
[2026-03-20T09:34:55.922Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.922Z] error: <plexProxyHandler> HTTP 500 communicating with Plex. Data: [object Object]
|
||||
[2026-03-20T09:34:55.922Z] error: <servicesProxy> TypeError: The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received an instance of Object
|
||||
at Function.from (node:buffer:328:9)
|
||||
at p (/app/.next/server/pages/api/services/proxy.js:58:46884)
|
||||
at process.processTicksAndRejections (node:internal/process/task_queues:103:5)
|
||||
at async l (/app/.next/server/pages/api/services/proxy.js:41:19184)
|
||||
at async tA (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:105856)
|
||||
at async tT.render (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:106571)
|
||||
at async Module.m (/app/.next/server/pages/api/services/proxy.js:58:29770)
|
||||
at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:766:9)
|
||||
at async NextNodeServer.handleCatchallRenderRequest (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:390:37)
|
||||
at async NextNodeServer.handleRequestImpl (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/base-server.js:916:17)
|
||||
[2026-03-20T09:34:55.936Z] error: <httpProxy> Error calling http://kallilabcore.local:9935/api/households/statistics...
|
||||
[2026-03-20T09:34:55.936Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.936Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:9935/api/households/statistics
|
||||
[2026-03-20T09:34:55.941Z] error: <httpProxy> Error calling http://kallilabcore.local:2283/api/server-info/version...
|
||||
[2026-03-20T09:34:55.942Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.942Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:2283/api/server-info/version
|
||||
[2026-03-20T09:34:55.950Z] error: <httpProxy> Error calling http://kallilabcore.local:2283/api/server-info/stats...
|
||||
[2026-03-20T09:34:55.950Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.950Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:2283/api/server-info/stats
|
||||
[2026-03-20T09:34:55.964Z] error: <httpProxy> Error calling http://kallilabcore.local:8543/admin/api.php...
|
||||
[2026-03-20T09:34:55.964Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:55.982Z] error: <httpProxy> Error calling http://kallilabcore.local:6969/graphql...
|
||||
[2026-03-20T09:34:55.982Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:58.302Z] warn: <resources> Drive not found for target: /mnt/cache
|
||||
[2026-03-20T09:34:58.302Z] warn: <resources> Drive not found for target: /mnt/user
|
||||
[2026-03-20T09:34:58.305Z] warn: <resources> Drive not found for target: /mnt/disk1
|
||||
[2026-03-20T09:34:58.656Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:34:58.656Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:34:58.656Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:35:00.649Z] error: <httpProxy> Error calling http://kallilabcore.local:32400/status/sessions...
|
||||
[2026-03-20T09:35:00.650Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:00.650Z] error: <plexProxyHandler> HTTP 500 communicating with Plex. Data: [object Object]
|
||||
[2026-03-20T09:35:00.650Z] error: <servicesProxy> TypeError: The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received an instance of Object
|
||||
at Function.from (node:buffer:328:9)
|
||||
at p (/app/.next/server/pages/api/services/proxy.js:58:46884)
|
||||
at process.processTicksAndRejections (node:internal/process/task_queues:103:5)
|
||||
at async l (/app/.next/server/pages/api/services/proxy.js:41:19184)
|
||||
at async tA (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:105856)
|
||||
at async tT.render (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:106571)
|
||||
at async Module.m (/app/.next/server/pages/api/services/proxy.js:58:29770)
|
||||
at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:766:9)
|
||||
at async NextNodeServer.handleCatchallRenderRequest (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:390:37)
|
||||
at async NextNodeServer.handleRequestImpl (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/base-server.js:916:17)
|
||||
[2026-03-20T09:35:00.739Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:35:00.739Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:00.739Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:35:01.329Z] warn: <resources> Drive not found for target: /mnt/user
|
||||
[2026-03-20T09:35:01.332Z] warn: <resources> Drive not found for target: /mnt/disk1
|
||||
[2026-03-20T09:35:01.332Z] warn: <resources> Drive not found for target: /mnt/cache
|
||||
[2026-03-20T09:35:02.818Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:35:02.818Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:02.818Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:35:04.364Z] warn: <resources> Drive not found for target: /mnt/disk1
|
||||
[2026-03-20T09:35:04.364Z] warn: <resources> Drive not found for target: /mnt/cache
|
||||
[2026-03-20T09:35:04.365Z] warn: <resources> Drive not found for target: /mnt/user
|
||||
[2026-03-20T09:35:04.894Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:35:04.894Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:04.895Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:35:05.731Z] error: <httpProxy> Error calling http://kallilabcore.local:32400/status/sessions...
|
||||
[2026-03-20T09:35:05.731Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:05.731Z] error: <plexProxyHandler> HTTP 500 communicating with Plex. Data: [object Object]
|
||||
[2026-03-20T09:35:05.731Z] error: <servicesProxy> TypeError: The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received an instance of Object
|
||||
at Function.from (node:buffer:328:9)
|
||||
at p (/app/.next/server/pages/api/services/proxy.js:58:46884)
|
||||
at process.processTicksAndRejections (node:internal/process/task_queues:103:5)
|
||||
at async l (/app/.next/server/pages/api/services/proxy.js:41:19184)
|
||||
at async tA (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:105856)
|
||||
at async tT.render (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:106571)
|
||||
at async Module.m (/app/.next/server/pages/api/services/proxy.js:58:29770)
|
||||
at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:766:9)
|
||||
at async NextNodeServer.handleCatchallRenderRequest (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:390:37)
|
||||
at async NextNodeServer.handleRequestImpl (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/base-server.js:916:17)
|
||||
[2026-03-20T09:35:06.968Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:35:06.968Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:06.968Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:35:07.413Z] warn: <resources> Drive not found for target: /mnt/user
|
||||
[2026-03-20T09:35:07.413Z] warn: <resources> Drive not found for target: /mnt/cache
|
||||
[2026-03-20T09:35:07.414Z] warn: <resources> Drive not found for target: /mnt/disk1
|
||||
[2026-03-20T09:35:09.045Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:35:09.046Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:09.046Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:35:10.440Z] warn: <resources> Drive not found for target: /mnt/cache
|
||||
[2026-03-20T09:35:10.446Z] warn: <resources> Drive not found for target: /mnt/user
|
||||
[2026-03-20T09:35:10.446Z] warn: <resources> Drive not found for target: /mnt/disk1
|
||||
[2026-03-20T09:35:10.799Z] error: <httpProxy> Error calling http://kallilabcore.local:32400/status/sessions...
|
||||
[2026-03-20T09:35:10.799Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:10.799Z] error: <plexProxyHandler> HTTP 500 communicating with Plex. Data: [object Object]
|
||||
[2026-03-20T09:35:10.799Z] error: <servicesProxy> TypeError: The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received an instance of Object
|
||||
at Function.from (node:buffer:328:9)
|
||||
at p (/app/.next/server/pages/api/services/proxy.js:58:46884)
|
||||
at process.processTicksAndRejections (node:internal/process/task_queues:103:5)
|
||||
at async l (/app/.next/server/pages/api/services/proxy.js:41:19184)
|
||||
at async tA (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:105856)
|
||||
at async tT.render (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:106571)
|
||||
at async Module.m (/app/.next/server/pages/api/services/proxy.js:58:29770)
|
||||
at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:766:9)
|
||||
at async NextNodeServer.handleCatchallRenderRequest (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:390:37)
|
||||
at async NextNodeServer.handleRequestImpl (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/base-server.js:916:17)
|
||||
[2026-03-20T09:35:11.117Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:35:11.118Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:11.118Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:35:13.195Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:35:13.195Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:13.195Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:35:13.453Z] warn: <resources> Drive not found for target: /mnt/cache
|
||||
[2026-03-20T09:35:13.471Z] warn: <resources> Drive not found for target: /mnt/disk1
|
||||
[2026-03-20T09:35:13.474Z] warn: <resources> Drive not found for target: /mnt/user
|
||||
[2026-03-20T09:35:15.272Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:35:15.273Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:15.273Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
[2026-03-20T09:35:15.879Z] error: <httpProxy> Error calling http://kallilabcore.local:32400/status/sessions...
|
||||
[2026-03-20T09:35:15.880Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:15.880Z] error: <plexProxyHandler> HTTP 500 communicating with Plex. Data: [object Object]
|
||||
[2026-03-20T09:35:15.880Z] error: <servicesProxy> TypeError: The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received an instance of Object
|
||||
at Function.from (node:buffer:328:9)
|
||||
at p (/app/.next/server/pages/api/services/proxy.js:58:46884)
|
||||
at process.processTicksAndRejections (node:internal/process/task_queues:103:5)
|
||||
at async l (/app/.next/server/pages/api/services/proxy.js:41:19184)
|
||||
at async tA (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:105856)
|
||||
at async tT.render (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/pages-api.runtime.prod.js:1:106571)
|
||||
at async Module.m (/app/.next/server/pages/api/services/proxy.js:58:29770)
|
||||
at async NextNodeServer.runApi (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:766:9)
|
||||
at async NextNodeServer.handleCatchallRenderRequest (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/next-server.js:390:37)
|
||||
at async NextNodeServer.handleRequestImpl (/app/node_modules/.pnpm/next@15.5.11_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/base-server.js:916:17)
|
||||
[2026-03-20T09:35:16.475Z] warn: <resources> Drive not found for target: /mnt/cache
|
||||
[2026-03-20T09:35:16.495Z] warn: <resources> Drive not found for target: /mnt/disk1
|
||||
[2026-03-20T09:35:16.497Z] warn: <resources> Drive not found for target: /mnt/user
|
||||
[2026-03-20T09:35:17.357Z] error: <httpProxy> Error calling http://kallilabcore.local:61208/api/4/quicklook...
|
||||
[2026-03-20T09:35:17.357Z] error: <httpProxy> [
|
||||
500,
|
||||
[Error: queryAaaa ENOTFOUND kallilabcore.local] {
|
||||
errno: undefined,
|
||||
code: 'ENOTFOUND',
|
||||
syscall: 'queryAaaa',
|
||||
hostname: 'kallilabcore.local'
|
||||
}
|
||||
]
|
||||
[2026-03-20T09:35:17.357Z] error: <credentialedProxyHandler> HTTP Error 500 calling http://kallilabcore.local:61208/api/4/quicklook
|
||||
|
||||
Reference in New Issue
Block a user